(int i)
| 513 | } |
| 514 | |
| 515 | public static byte[] int2u2le(int i) { |
| 516 | return new byte[]{(byte) i, (byte) (i >> 8)}; |
| 517 | } |
| 518 | |
| 519 | public static int readLe32(byte[] buf, int index) { |
| 520 | return buf[index] & 0xFF | (buf[index + 1] << 8) & 0xff00 |
no outgoing calls
no test coverage detected