/cts/tools/vm-tests-tf/src/dot/junit/opcodes/const_high16/ |
Test_const_high16.java | 17 package dot.junit.opcodes.const_high16; 21 import dot.junit.opcodes.const_high16.d.T_const_high16_1; 37 load("dot.junit.opcodes.const_high16.d.T_const_high16_3", VerifyError.class); 47 load("dot.junit.opcodes.const_high16.d.T_const_high16_4", VerifyError.class);
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/const_high16/d/ |
T_const_high16_1.java | 17 package dot.junit.opcodes.const_high16.d;
|
T_const_high16_1.d | 16 .class public dot.junit.opcodes.const_high16.d.T_const_high16_1
|
T_const_high16_3.d | 16 .class public dot.junit.opcodes.const_high16.d.T_const_high16_3
|
T_const_high16_4.d | 16 .class public dot.junit.opcodes.const_high16.d.T_const_high16_4
|
/art/tools/dexfuzz/src/dexfuzz/rawdex/ |
Opcode.java | 41 CONST_HIGH16,
|
Instruction.java | 341 addOpcodeInfo(Opcode.CONST_HIGH16, "const/high16", 0x15, new Format21h());
|
/external/smali/dexlib2/src/main/ragel/ |
Opcodes.rl | 22 define const_high16 21
|
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/util/ |
InstructionOffsetMapTest.java | 55 /*07: 0x09*/ new ImmutableInstruction21ih(Opcode.CONST_HIGH16, 9, 0x10000),
|
/dalvik/dx/src/com/android/dx/dex/code/ |
Dops.java | 144 Opcodes.CONST_HIGH16, Form21s.THE_ONE, true); 150 public static final Dop CONST_HIGH16 = 151 new Dop(Opcodes.CONST_HIGH16, Opcodes.CONST, [all...] |
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
Dops.java | 147 Opcodes.CONST_HIGH16, Form21s.THE_ONE, true); 153 public static final Dop CONST_HIGH16 = 154 new Dop(Opcodes.CONST_HIGH16, Opcodes.CONST, [all...] |
/dalvik/dx/src/com/android/dx/io/instructions/ |
InstructionCodec.java | 236 literal <<= (opcode == Opcodes.CONST_HIGH16) ? 16 : 48; 247 int shift = (opcode == Opcodes.CONST_HIGH16) ? 16 : 48; [all...] |
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/ |
InstructionCodec.java | 237 literal <<= (opcode == Opcodes.CONST_HIGH16) ? 16 : 48; 248 int shift = (opcode == Opcodes.CONST_HIGH16) ? 16 : 48; [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
Dops.java | 147 public static final Dop CONST_HIGH16 = 148 new Dop(DalvOps.CONST_HIGH16, DalvOps.CONST, [all...] |
DalvOps.java | 55 public static final int CONST_HIGH16 = 0x15;
|
/dalvik/dx/src/com/android/dx/io/ |
OpcodeInfo.java | 146 public static final Info CONST_HIGH16 = 147 new Info(Opcodes.CONST_HIGH16, "const/high16", [all...] |
Opcodes.java | 65 public static final int CONST_HIGH16 = 0x15;
|
/external/dexmaker/src/dx/java/com/android/dx/io/ |
OpcodeInfo.java | 146 public static final Info CONST_HIGH16 = 147 new Info(Opcodes.CONST_HIGH16, "const/high16", [all...] |
Opcodes.java | 65 public static final int CONST_HIGH16 = 0x15;
|
/art/runtime/ |
dex_instruction.cc | 177 if (Opcode() == CONST_HIGH16) {
|
dex_instruction_list.h | 42 V(0x15, CONST_HIGH16, "const/high16", k21h, true, kIndexNone, kContinue | kRegBFieldOrConstant, kVerifyRegA) \ [all...] |
/art/runtime/quick/ |
inline_method_analyser.cc | 485 case Instruction::CONST_HIGH16: 575 if (instruction->Opcode() == Instruction::CONST_HIGH16) {
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/ |
AllTests.java | 74 suite.addTestSuite(dot.junit.opcodes.const_high16.Test_const_high16.class);
|
/external/smali/smalidea/src/test/java/org/jf/smalidea/dexlib/ |
SmalideaMethodTest.java | 164 Assert.assertEquals(Opcode.CONST_HIGH16, instruction.getOpcode());
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/ |
Opcode.java | 65 CONST_HIGH16(0x15, "const/high16", ReferenceType.NONE, Format.Format21ih, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER), [all...] |