Get the lower 16 bits of the int
Get the lower 32 bits of the long
Get the lower 24 bits of the int
Get the lower 8 bits of the int
Get the upper 16 bits of the int
Get the upper 32 bits of the long
Get the upper 24 bits of the int
Get the upper 8 bits of the int
Makes an int that combines an upper 8 bits (from a short) with the lower 24 bits (from an int)
Makes an int that combines an upper 8 bits (from a short) with the lower 24 bits (from an int)
The upper 8 bits
The lower 24 bits
The combined int
Makes an int that combines an upper 24 bits (from an int) with the lower 8 bits (from a short)
Makes an int that combines an upper 24 bits (from an int) with the lower 8 bits (from a short)
The upper 24 bits
The lower 8 bits
The combined int
Create a long out of 2 ints such that the first int is the upper 32 bits of the long and the second int is the lower 32 bits of the long.
Create a long out of 2 ints such that the first int is the upper 32 bits of the long and the second int is the lower 32 bits of the long.
[a - upper 32 bits][b - lower 32 bits]
Split an int into 2 shorts (the reverse of makeInt())
Split a long into 2 ints (the reverse of makeLong())