Searched defs:hex (Results 1 - 2 of 2) sorted by relevance

/art/runtime/base/
H A Dhex_dump.cc40 (16 * 3) + /* 16 hex digits and space */
60 char* hex = out; local
62 (16 * 3) + /* 16 hex digits and space */ 2 /* white space */;
65 *hex++ = gHexDigit[line_offset >> (kBitsPerWord - 4)];
68 hex++;
69 hex++;
77 hex += gap * 3;
83 *hex++ = gHexDigit[*addr >> 4];
84 *hex++ = gHexDigit[*addr & 0x0f];
85 hex
[all...]
/art/disassembler/
H A Ddisassembler_x86.cc1242 std::stringstream hex; local
1244 hex << StringPrintf("%02X", begin_instr[i]);
1256 << StringPrintf(": %22s \t%-7s ", hex.str().c_str(), prefixed_opcode.str().c_str())

Completed in 1760 milliseconds