Searched refs:hexDigits (Results 1 – 1 of 1) sorted by relevance
92 static const char hexDigits[16] = {'0', '1', '2', '3', '4', '5', '6', '7', in encodeHex() local99 ret[n * 2 + 0] = hexDigits[byte >> 4]; in encodeHex()100 ret[n * 2 + 1] = hexDigits[byte & 0x0f]; in encodeHex()