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

/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DInsnFormat.java484 protected static short opcodeUnit(DalvInsn insn, int arg) { method in class:InsnFormat
507 protected static short opcodeUnit(DalvInsn insn) { method in class:InsnFormat
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DInstructionCodec.java33 @Override public DecodedInstruction decode(int opcodeUnit,
36 this, opcodeUnit, 0, null,
46 @Override public DecodedInstruction decode(int opcodeUnit,
48 int opcode = byte0(opcodeUnit);
49 int literal = byte1(opcodeUnit); // should be zero
61 @Override public DecodedInstruction decode(int opcodeUnit,
63 int opcode = byte0(opcodeUnit);
64 int a = nibble2(opcodeUnit);
65 int b = nibble3(opcodeUnit);
80 @Override public DecodedInstruction decode(int opcodeUnit,
890 decode(int opcodeUnit, CodeInput in) argument
901 decodeRegisterList( InstructionCodec format, int opcodeUnit, CodeInput in) argument
966 decodeRegisterRange( InstructionCodec format, int opcodeUnit, CodeInput in) argument
[all...]
/external/dexmaker/src/dx/java/com/android/dx/io/
H A DOpcodes.java389 * @param opcodeUnit the opcode-containing code unit
392 public static int extractOpcodeFromUnit(int opcodeUnit) { argument
399 int lowByte = opcodeUnit & 0xff;
400 return ((lowByte == 0) || (lowByte == 0xff)) ? opcodeUnit : lowByte;

Completed in 162 milliseconds