Home
last modified time | relevance | path

Searched refs:opcode1 (Results 1 – 2 of 2) sorted by relevance

/aosp12/art/disassembler/
H A Ddisassembler_x86.cc405 opcode1 = "push"; in DumpInstruction()
410 opcode1 = "pop"; in DumpInstruction()
436 opcode1 = "j"; in DumpInstruction()
441 opcode1 = "xchg"; in DumpInstruction()
1006 opcode1 = "j"; in DumpInstruction()
1322 opcode1 = "test"; in DumpInstruction()
1328 opcode1 = "lea"; in DumpInstruction()
1333 opcode1 = "pop"; in DumpInstruction()
1339 opcode1 = "cdq"; in DumpInstruction()
1360 opcode1 = "mov"; in DumpInstruction()
[all …]
/aosp12/art/tools/dexfuzz/src/dexfuzz/rawdex/
H A DOpcode.java277 public static boolean isBetween(Opcode opcode, Opcode opcode1, Opcode opcode2) { in isBetween() argument
278 return (opcode.ordinal() >= opcode1.ordinal() && opcode.ordinal() <= opcode2.ordinal()); in isBetween()