Home
last modified time | relevance | path

Searched defs:opcode2 (Results 1 – 3 of 3) sorted by relevance

/art/disassembler/
Ddisassembler_arm.cc1608 uint16_t opcode2 = instr >> 9; in DumpThumb16() local
1678 uint16_t opcode2 = (instr >> 6) & 0xF; in DumpThumb16() local
1685 uint16_t opcode2 = (instr >> 6) & 0x0F; in DumpThumb16() local
1800 uint16_t opcode2 = (instr >> 5) & 0x7F; in DumpThumb16() local
Ddisassembler_x86.cc295 const char* opcode2 = ""; // Sub-opcode. E.g., jump type. in DumpInstruction() local
/art/tools/dexfuzz/src/dexfuzz/rawdex/
DOpcode.java277 public static boolean isBetween(Opcode opcode, Opcode opcode1, Opcode opcode2) { in isBetween()