Searched defs:opcodeUnit (Results 1 - 4 of 4) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DInsnFormat.java404 protected static short opcodeUnit(DalvInsn insn, int arg) { method in class:InsnFormat
/dalvik/dx/src/com/android/dx/dex/code/
H A DInsnFormat.java483 protected static short opcodeUnit(DalvInsn insn, int arg) { method in class:InsnFormat
506 protected static short opcodeUnit(DalvInsn insn) { method in class:InsnFormat
/dalvik/dx/src/com/android/dx/io/instructions/
H A DInstructionCodec.java32 @Override public DecodedInstruction decode(int opcodeUnit,
35 this, opcodeUnit, 0, null,
45 @Override public DecodedInstruction decode(int opcodeUnit,
47 int opcode = byte0(opcodeUnit);
48 int literal = byte1(opcodeUnit); // should be zero
60 @Override public DecodedInstruction decode(int opcodeUnit,
62 int opcode = byte0(opcodeUnit);
63 int a = nibble2(opcodeUnit);
64 int b = nibble3(opcodeUnit);
79 @Override public DecodedInstruction decode(int opcodeUnit,
756 decode(int opcodeUnit, CodeInput in) argument
767 decodeRegisterList( InstructionCodec format, int opcodeUnit, CodeInput in) argument
832 decodeRegisterRange( InstructionCodec format, int opcodeUnit, CodeInput in) argument
[all...]
/dalvik/dx/src/com/android/dx/io/
H A DOpcodes.java350 * @param opcodeUnit the opcode-containing code unit
353 public static int extractOpcodeFromUnit(int opcodeUnit) { argument
360 int lowByte = opcodeUnit & 0xff;
361 return ((lowByte == 0) || (lowByte == 0xff)) ? opcodeUnit : lowByte;

Completed in 5364 milliseconds