Home
last modified time | relevance | path

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

/external/v8/src/ia32/
Ddisasm-ia32.cc2562 int instr_len = data - instr; in InstructionDecode() local
2563 if (instr_len == 0) { in InstructionDecode()
2566 DCHECK_GT(instr_len, 0); // Ensure progress. in InstructionDecode()
2575 for (int i = 6 - instr_len; i >= 0; i--) { in InstructionDecode()
2582 return instr_len; in InstructionDecode()
/external/v8/src/x64/
Ddisasm-x64.cc2782 int instr_len = static_cast<int>(data - instr); in InstructionDecode() local
2783 DCHECK_GT(instr_len, 0); // Ensure progress. in InstructionDecode()
2790 for (int i = 6 - instr_len; i >= 0; i--) { in InstructionDecode()
2796 return instr_len; in InstructionDecode()