Home
last modified time | relevance | path

Searched refs:CONST_HIGH16 (Results 1 – 6 of 6) sorted by relevance

/dalvik/dx/src/com/android/dx/io/
DOpcodes.java66 public static final int CONST_HIGH16 = 0x15; field in Opcodes
DOpcodeInfo.java146 public static final Info CONST_HIGH16 = field in OpcodeInfo
147 new Info(Opcodes.CONST_HIGH16, "const/high16",
994 set(CONST_HIGH16);
/dalvik/dexgen/src/com/android/dexgen/dex/code/
DDalvOps.java55 public static final int CONST_HIGH16 = 0x15; field in DalvOps
DDops.java149 public static final Dop CONST_HIGH16 = field in Dops
150 new Dop(DalvOps.CONST_HIGH16, DalvOps.CONST,
975 set(CONST_HIGH16);
/dalvik/dx/src/com/android/dx/dex/code/
DDops.java146 Opcodes.CONST_HIGH16, Form21s.THE_ONE, true);
152 public static final Dop CONST_HIGH16 = field in Dops
153 new Dop(Opcodes.CONST_HIGH16, Opcodes.CONST,
994 set(CONST_HIGH16);
/dalvik/dx/src/com/android/dx/io/instructions/
DInstructionCodec.java260 literal <<= (opcode == Opcodes.CONST_HIGH16) ? 16 : 48; in FORMAT_21H()
272 int shift = (opcode == Opcodes.CONST_HIGH16) ? 16 : 48; in FORMAT_21H()