Searched refs:hexdigits (Results 1 – 5 of 5) sorted by relevance
616 static char hexdigits[] = "0123456789abcdef"; in hex2n() local619 p = strchr (hexdigits, tolower((unsigned char)c)); in hex2n()623 return p - hexdigits; in hex2n()
31 static const char hexdigits[] = "0123456789abcdef";
2377 static const char hexdigits[16] = "0123456789abcdef"; in VarHash() local2421 Buf_AddByte(&buf, hexdigits[h & 15]); in VarHash()
84891 static const char hexdigits[] = {84925 zText[(i*2)+2] = hexdigits[(zBlob[i]>>4)&0x0F];84926 zText[(i*2)+3] = hexdigits[(zBlob[i])&0x0F];84989 *(z++) = hexdigits[(c>>4)&0xf];84990 *(z++) = hexdigits[c&0xf];
119447 static const char hexdigits[] = {119488 zText[(i*2)+2] = hexdigits[(zBlob[i]>>4)&0x0F];119489 zText[(i*2)+3] = hexdigits[(zBlob[i])&0x0F];119608 *(z++) = hexdigits[(c>>4)&0xf];119609 *(z++) = hexdigits[c&0xf];