Home
last modified time | relevance | path

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

/art/libdexfile/dex/
Ddex_instruction.cc143 size_t inst_length = SizeInCodeUnits(); in DumpHex() local
144 if (inst_length > code_units) { in DumpHex()
145 inst_length = code_units; in DumpHex()
149 for (size_t i = 0; i < inst_length; i++) { in DumpHex()
152 for (size_t i = inst_length; i < code_units; i++) { in DumpHex()
159 size_t inst_length = SizeInCodeUnits(); in DumpHexLE() local
160 if (inst_length > instr_code_units) { in DumpHexLE()
161 inst_length = instr_code_units; in DumpHexLE()
165 for (size_t i = 0; i < inst_length; i++) { in DumpHexLE()
169 for (size_t i = inst_length; i < instr_code_units; i++) { in DumpHexLE()