Searched refs:read32bit (Results 1 – 4 of 4) sorted by relevance
/external/javassist/src/main/javassist/bytecode/ |
D | CodeIterator.java | 167 return ByteArray.read32bit(bytecode, index); in s32bitAt() 778 int npairs = ByteArray.read32bit(code, index2); in nextOpcode() 782 int low = ByteArray.read32bit(code, index2); in nextOpcode() 783 int high = ByteArray.read32bit(code, index2 + 4); in nextOpcode() 901 int offset = ByteArray.read32bit(code, i + 1); in insertGap2() 920 int defaultbyte = newOffset(i, ByteArray.read32bit(code, i2), in insertGap2() 923 int lowbyte = ByteArray.read32bit(code, i2 + 4); in insertGap2() 925 int highbyte = ByteArray.read32bit(code, i2 + 8); in insertGap2() 931 int offset = newOffset(i, ByteArray.read32bit(code, i0), in insertGap2() 952 int defaultbyte = newOffset(i, ByteArray.read32bit(code, i2), in insertGap2() [all …]
|
D | ByteArray.java | 48 public static int read32bit(byte[] code, int index) { in read32bit() method in ByteArray
|
D | Bytecode.java | 349 public int read32bit(int offset) { in read32bit() method in Bytecode
|
/external/javassist/src/main/javassist/bytecode/stackmap/ |
D | Tracer.java | 548 int low = ByteArray.read32bit(code, pos2); in doOpcode148_201() 549 int high = ByteArray.read32bit(code, pos2 + 4); in doOpcode148_201() 551 visitTableSwitch(pos, code, n, pos2 + 8, ByteArray.read32bit(code, pos2 - 4)); in doOpcode148_201() 556 int n = ByteArray.read32bit(code, pos2); in doOpcode148_201() 557 visitLookupSwitch(pos, code, n, pos2 + 4, ByteArray.read32bit(code, pos2 - 4)); in doOpcode148_201() 653 visitGoto(pos, code, ByteArray.read32bit(code, pos + 1)); in doOpcode148_201()
|