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 >> (kBitsPerIntPtrT - 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.cc153 std::stringstream hex; local
155 hex << StringPrintf("%02X", begin[i]);
157 return hex.str();

Completed in 458 milliseconds