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

  /development/tools/jdwpspy/
Main.cpp 15 static const char gHexDigit[] = "0123456789abcdef";
61 *hex++ = gHexDigit[lineOffset >> 28];
79 *hex++ = gHexDigit[*addr >> 4];
80 *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 127 milliseconds