Home
last modified time | relevance | path

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

/art/runtime/base/
Dhex_dump.cc35 static const char gHexDigit[] = "0123456789abcdef"; in Dump() local
65 *hex++ = gHexDigit[line_offset >> (kBitsPerIntPtrT - 4)]; in Dump()
83 *hex++ = gHexDigit[*addr >> 4]; in Dump()
84 *hex++ = gHexDigit[*addr & 0x0f]; in Dump()