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.java65 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",
970 set(CONST_HIGH16);
/dalvik/dexgen/src/com/android/dexgen/dex/code/
DDalvOps.java55 public static final int CONST_HIGH16 = 0x15; field in DalvOps
DDops.java147 public static final Dop CONST_HIGH16 = field in Dops
148 new Dop(DalvOps.CONST_HIGH16, DalvOps.CONST,
965 set(CONST_HIGH16);
/dalvik/dx/src/com/android/dx/dex/code/
DDops.java144 Opcodes.CONST_HIGH16, Form21s.THE_ONE, true);
150 public static final Dop CONST_HIGH16 = field in Dops
151 new Dop(Opcodes.CONST_HIGH16, Opcodes.CONST,
968 set(CONST_HIGH16);
/dalvik/dx/src/com/android/dx/io/instructions/
DInstructionCodec.java236 literal <<= (opcode == Opcodes.CONST_HIGH16) ? 16 : 48; in FORMAT_21H()
247 int shift = (opcode == Opcodes.CONST_HIGH16) ? 16 : 48; in FORMAT_21H()