Home
last modified time | relevance | path

Searched refs:decodeInt (Results 1 – 8 of 8) sorted by relevance

/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
DNumberUtils.java139 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/
DPackedSwitchDataPseudoInstruction.java75 this.firstKey = NumberUtils.decodeInt(buffer, bufferIndex + 4); in PackedSwitchDataPseudoInstruction()
79 targets[i] = NumberUtils.decodeInt(buffer, bufferIndex + 8 + 4*i); in PackedSwitchDataPseudoInstruction()
DSparseSwitchDataPseudoInstruction.java87 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()
DInstructionWithJumboReference.java55 return NumberUtils.decodeInt(buffer, bufferIndex + 2); in getReferencedItemIndex()
DInstruction30t.java52 this.targetAddressOffset = NumberUtils.decodeInt(buffer, bufferIndex+2); in Instruction30t()
DInstruction31i.java59 this.litB = NumberUtils.decodeInt(buffer, bufferIndex + 2); in Instruction31i()
DInstruction31t.java59 this.targetAddressOffset = NumberUtils.decodeInt(buffer, bufferIndex + 2); in Instruction31t()
DArrayDataPseudoInstruction.java74 int elementCount = NumberUtils.decodeInt(buffer, bufferIndex+4); in ArrayDataPseudoInstruction()