HomeSort by relevance Sort by last modified time
    Searched refs:gHexDigit (Results 1 - 3 of 3) sorted by null

  /art/jdwpspy/
Main.cpp 14 static const char gHexDigit[] = "0123456789abcdef";
60 *hex++ = gHexDigit[lineOffset >> 28];
78 *hex++ = gHexDigit[*addr >> 4];
79 *hex++ = gHexDigit[*addr & 0x0f];
  /art/runtime/base/
logging.cc 175 static const char gHexDigit[] = "0123456789abcdef";
198 *hex++ = gHexDigit[line_offset >> 28];
216 *hex++ = gHexDigit[*addr >> 4];
217 *hex++ = gHexDigit[*addr & 0x0f];
  /dalvik/vm/
Misc.cpp 50 static const char gHexDigit[] = "0123456789abcdef";
78 *hex++ = gHexDigit[lineOffset >> 28];
95 *hex++ = gHexDigit[*addr >> 4];
96 *hex++ = gHexDigit[*addr & 0x0f];

Completed in 226 milliseconds