Home
last modified time | relevance | path

Searched refs:decodeHighUnsignedNibble (Results 1 – 9 of 9) sorted by relevance

/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
DInstruction35mi.java81 this.regCount = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 1]); in Instruction35mi()
84 this.regE = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 4]); in Instruction35mi()
86 this.regG = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 5]); in Instruction35mi()
DInstruction35ms.java81 this.regCount = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 1]); in Instruction35ms()
84 this.regE = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 4]); in Instruction35ms()
86 this.regG = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 5]); in Instruction35ms()
DInstruction35c.java82 this.regCount = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 1]); in Instruction35c()
85 this.regE = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 4]); in Instruction35c()
87 this.regG = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 5]); in Instruction35c()
DInstruction12x.java58 this.regB = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 1]); in Instruction12x()
DInstruction22s.java62 this.regB = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 1]); in Instruction22s()
DInstruction22cs.java66 this.regB = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 1]); in Instruction22cs()
DInstruction22t.java68 regB = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 1]); in Instruction22t()
DInstruction22c.java62 this.regB = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 1]); in Instruction22c()
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
DNumberUtils.java56 public static byte decodeHighUnsignedNibble(byte b) { in decodeHighUnsignedNibble() method in NumberUtils