Searched refs:hexMap (Results 1 – 2 of 2) sorted by relevance
129 const char *hexMap = "0123456789abcdef"; in ToString() local132 hex = hex + hexMap[(data[i] & 0xF0) >> 4] + hexMap[data[i] & 0x0F]; // higher 4 bits in ToString()
31 static const std::map<char, unsigned char> hexMap = { in CharToHex() local56 auto it = hexMap.find(in); in CharToHex()57 if (it != hexMap.end()) { in CharToHex()