Searched refs:hex_rep (Results 1 – 3 of 3) sorted by relevance
24 static const char hex_rep[] = "0123456789abcdef"; in dumpBytes() local26 OS << hex_rep[(i & 0xF0) >> 4]; in dumpBytes()27 OS << hex_rep[i & 0xF]; in dumpBytes()
20 static const char hex_rep[] = "0123456789abcdef"; in dumpBytes() local22 OS << hex_rep[(i & 0xF0) >> 4]; in dumpBytes()23 OS << hex_rep[i & 0xF]; in dumpBytes()
122 static const char hex_rep[] = "0123456789abcdef"; in DumpBytes() local138 output[index] = hex_rep[(*i & 0xF0) >> 4]; in DumpBytes()139 output[index + 1] = hex_rep[*i & 0xF]; in DumpBytes()