Searched defs:hex_chars (Results 1 - 1 of 1) sorted by relevance

/external/v8/src/profiler/
H A Dheap-snapshot-generator.cc2944 static const char hex_chars[] = "0123456789ABCDEF"; local
2946 w->AddCharacter(hex_chars[(u >> 12) & 0xf]);
2947 w->AddCharacter(hex_chars[(u >> 8) & 0xf]);
2948 w->AddCharacter(hex_chars[(u >> 4) & 0xf]);
2949 w->AddCharacter(hex_chars[u & 0xf]);

Completed in 121 milliseconds