Searched refs:decodeInt (Results 1 – 8 of 8) sorted by relevance
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/ |
D | NumberUtils.java | 139 public static int decodeInt(byte lsb, byte mlsb, byte mmsb, byte msb) { in decodeInt() method in NumberUtils 152 public static int decodeInt(byte[] bytes, int index) { in decodeInt() method in NumberUtils
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/ |
D | PackedSwitchDataPseudoInstruction.java | 75 this.firstKey = NumberUtils.decodeInt(buffer, bufferIndex + 4); in PackedSwitchDataPseudoInstruction() 79 targets[i] = NumberUtils.decodeInt(buffer, bufferIndex + 8 + 4*i); in PackedSwitchDataPseudoInstruction()
|
D | SparseSwitchDataPseudoInstruction.java | 87 keys[i] = NumberUtils.decodeInt(buffer, bufferIndex + 4 + i*4); in SparseSwitchDataPseudoInstruction() 88 targets[i] = NumberUtils.decodeInt(buffer, bufferIndex + 4 + targetCount*4 + i*4); in SparseSwitchDataPseudoInstruction()
|
D | InstructionWithJumboReference.java | 55 return NumberUtils.decodeInt(buffer, bufferIndex + 2); in getReferencedItemIndex()
|
D | Instruction30t.java | 52 this.targetAddressOffset = NumberUtils.decodeInt(buffer, bufferIndex+2); in Instruction30t()
|
D | Instruction31i.java | 59 this.litB = NumberUtils.decodeInt(buffer, bufferIndex + 2); in Instruction31i()
|
D | Instruction31t.java | 59 this.targetAddressOffset = NumberUtils.decodeInt(buffer, bufferIndex + 2); in Instruction31t()
|
D | ArrayDataPseudoInstruction.java | 74 int elementCount = NumberUtils.decodeInt(buffer, bufferIndex+4); in ArrayDataPseudoInstruction()
|