(byte[] output, int firstByte, int value)
| 86 | |
| 87 | |
| 88 | static void setThreeBytes(byte[] output, int firstByte, int value) { |
| 89 | output[firstByte] = (byte) ((value & 0xFF0000) >> 16); |
| 90 | output[firstByte + 1] = (byte) ((value & 0xFF00) >> 8); |
| 91 | output[firstByte + 2] = (byte) (value & 0xFF); |
| 92 | } |
| 93 | |
| 94 | |
| 95 | static long getFourBytes(byte[] input, int firstByte) { |
no outgoing calls