Home
last modified time | relevance | path

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

/art/runtime/
Ddex_instruction.cc130 size_t inst_length = SizeInCodeUnits(); in DumpHex() local
131 if (inst_length > code_units) { in DumpHex()
132 inst_length = code_units; in DumpHex()
136 for (size_t i = 0; i < inst_length; i++) { in DumpHex()
139 for (size_t i = inst_length; i < code_units; i++) { in DumpHex()
146 size_t inst_length = SizeInCodeUnits(); in DumpHexLE() local
147 if (inst_length > instr_code_units) { in DumpHexLE()
148 inst_length = instr_code_units; in DumpHexLE()
152 for (size_t i = 0; i < inst_length; i++) { in DumpHexLE()
156 for (size_t i = inst_length; i < instr_code_units; i++) { in DumpHexLE()