Home
last modified time | relevance | path

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

/art/runtime/
Ddex_instruction.cc134 size_t inst_length = SizeInCodeUnits(); in DumpHex() local
135 if (inst_length > code_units) { in DumpHex()
136 inst_length = code_units; in DumpHex()
140 for (size_t i = 0; i < inst_length; i++) { in DumpHex()
143 for (size_t i = inst_length; i < code_units; i++) { in DumpHex()
150 size_t inst_length = SizeInCodeUnits(); in DumpHexLE() local
151 if (inst_length > instr_code_units) { in DumpHexLE()
152 inst_length = instr_code_units; in DumpHexLE()
156 for (size_t i = 0; i < inst_length; i++) { in DumpHexLE()
160 for (size_t i = inst_length; i < instr_code_units; i++) { in DumpHexLE()