(byte[] buf, int off)
| 522 | } |
| 523 | |
| 524 | public static int readLe16(byte[] buf, int off) { |
| 525 | return (buf[off] & 0xFF) | ((buf[off + 1] << 8) & 0xff00); |
| 526 | } |
| 527 | |
| 528 | public static boolean verifyOpcodeOffset(byte[] buf, int insStart, int bLen, int opcodeOffset) { |
| 529 | for (int i = 0; i < bLen; ) { |
no outgoing calls
no test coverage detected