Searched refs:read32bit (Results 1 – 4 of 4) sorted by relevance
/external/javassist/src/main/javassist/bytecode/ |
D | CodeIterator.java | 146 return ByteArray.read32bit(bytecode, index); in s32bitAt() 758 int npairs = ByteArray.read32bit(code, index2); in nextOpcode() 762 int low = ByteArray.read32bit(code, index2); in nextOpcode() 763 int high = ByteArray.read32bit(code, index2 + 4); in nextOpcode() 881 int offset = ByteArray.read32bit(code, i + 1); in insertGap2() 900 int defaultbyte = newOffset(i, ByteArray.read32bit(code, i2), in insertGap2() 903 int lowbyte = ByteArray.read32bit(code, i2 + 4); in insertGap2() 905 int highbyte = ByteArray.read32bit(code, i2 + 8); in insertGap2() 911 int offset = newOffset(i, ByteArray.read32bit(code, i0), in insertGap2() 932 int defaultbyte = newOffset(i, ByteArray.read32bit(code, i2), in insertGap2() [all …]
|
D | ByteArray.java | 47 public static int read32bit(byte[] code, int index) { in read32bit() method in ByteArray
|
D | Bytecode.java | 343 public int read32bit(int offset) { in read32bit() method in Bytecode
|
/external/javassist/src/main/javassist/bytecode/stackmap/ |
D | Tracer.java | 576 int low = ByteArray.read32bit(code, pos2); in doOpcode148_201() 577 int high = ByteArray.read32bit(code, pos2 + 4); in doOpcode148_201() 579 visitTableSwitch(pos, code, n, pos2 + 8, ByteArray.read32bit(code, pos2 - 4)); in doOpcode148_201() 584 int n = ByteArray.read32bit(code, pos2); in doOpcode148_201() 585 visitLookupSwitch(pos, code, n, pos2 + 4, ByteArray.read32bit(code, pos2 - 4)); in doOpcode148_201() 677 visitGoto(pos, code, ByteArray.read32bit(code, pos + 1)); in doOpcode148_201()
|