Home | History | Annotate | Download | only in Format

Lines Matching refs:bufferIndex

78     private Instruction35ms(Opcode opcode, byte[] buffer, int bufferIndex) {
81 this.regCount = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 1]);
82 this.regA = NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 1]);
83 this.regD = NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 4]);
84 this.regE = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 4]);
85 this.regF = NumberUtils.decodeLowUnsignedNibble(buffer[bufferIndex + 5]);
86 this.regG = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 5]);
87 this.methodIndex = (short)NumberUtils.decodeUnsignedShort(buffer, bufferIndex + 2);
131 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
132 return new Instruction35ms(opcode, buffer, bufferIndex);