OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:gHexDigit
(Results
1 - 2
of
2
) sorted by null
/development/tools/jdwpspy/
Main.cpp
14
static const char
gHexDigit
[] = "0123456789abcdef";
60
*hex++ =
gHexDigit
[lineOffset >> 28];
78
*hex++ =
gHexDigit
[*addr >> 4];
79
*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 180 milliseconds