Searched refs:hexdigits (Results 1 – 8 of 8) sorted by relevance
32 hexdigits := hexdigits hexdigit | hexdigit
280 const char hexdigits[16] = "0123456789abcdef"; in stralloc_add_hex() local288 s->s[s->n+nn] = hexdigits[value & 15]; in stralloc_add_hex()
659 static const char *hexdigits = "0123456789abcdef"; in FastHexToBuffer() local663 *p-- = hexdigits[i & 15]; // mod by 16 in FastHexToBuffer()670 static const char *hexdigits = "0123456789abcdef"; in InternalFastHexToBuffer() local673 buffer[i] = hexdigits[uint32(value) & 0xf]; in InternalFastHexToBuffer()
347 it = string.hexdigits[1:n + 1]
163 static const char hexdigits[] = "0123456789abcdef"; in gsm_hex_from_byte() local165 hex[0] = hexdigits[(val >> 4) & 15]; in gsm_hex_from_byte()166 hex[1] = hexdigits[val & 15]; in gsm_hex_from_byte()
92 const char* hexdigits = "0123456789abcdef"; in quote() local112 p[2] = hexdigits[ (c) >> 4 ]; in quote()113 p[3] = hexdigits[ (c) & 15 ]; in quote()
87005 static const char hexdigits[] = {87039 zText[(i*2)+2] = hexdigits[(zBlob[i]>>4)&0x0F];87040 zText[(i*2)+3] = hexdigits[(zBlob[i])&0x0F];87103 *(z++) = hexdigits[(c>>4)&0xf];87104 *(z++) = hexdigits[c&0xf];
86969 static const char hexdigits[] = {87003 zText[(i*2)+2] = hexdigits[(zBlob[i]>>4)&0x0F];87004 zText[(i*2)+3] = hexdigits[(zBlob[i])&0x0F];87067 *(z++) = hexdigits[(c>>4)&0xf];87068 *(z++) = hexdigits[c&0xf];