(byte[] input, int firstByte)
| 64 | |
| 65 | |
| 66 | static int getTwoBytes(byte[] input, int firstByte) { |
| 67 | return ((input[firstByte] & 0xFF) << 8) + (input[firstByte + 1] & 0xFF); |
| 68 | } |
| 69 | |
| 70 | |
| 71 | static int getThreeBytes(byte[] input, int firstByte) { |
no outgoing calls
no test coverage detected