Searched refs:hex_rep (Results 1 – 1 of 1) sorted by relevance
198 static const char hex_rep[] = "0123456789abcdef"; in DumpBytes() local202 output.push_back(hex_rep[(i & 0xF0) >> 4]); in DumpBytes()203 output.push_back(hex_rep[i & 0xF]); in DumpBytes()