(int low, int high)
| 800 | } |
| 801 | |
| 802 | public static long encodeLowHighInts(int low, int high) { |
| 803 | return ((Integer.toUnsignedLong(high)) << 32L) | Integer.toUnsignedLong(low); |
| 804 | } |
| 805 | |
| 806 | public static int encodeLowHighShorts(short low, short high) { |
| 807 | return ((Short.toUnsignedInt(high)) << 16) | Short.toUnsignedInt(low); |