OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:branch_bytes
(Results
1 - 1
of
1
) sorted by null
/art/runtime/
disassembler_x86.cc
145
size_t
branch_bytes
= 0;
local
219
branch_bytes
= 1;
470
branch_bytes
= 4;
586
case 0xE8: opcode << "call";
branch_bytes
= 4; break;
587
case 0xE9: opcode << "jmp";
branch_bytes
= 4; break;
588
case 0xEB: opcode << "jmp";
branch_bytes
= 1; break;
713
} else if (
branch_bytes
> 0) {
716
if (
branch_bytes
== 1) {
720
CHECK_EQ(
branch_bytes
, 4u);
Completed in 159 milliseconds