Searched refs:hexdigits (Results 1 – 9 of 9) 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()
2518 const char hexdigits[16] = { in _dbus_string_append_byte_as_hex() local2524 hexdigits[(byte >> 4)])) in _dbus_string_append_byte_as_hex()2528 hexdigits[(byte & 0x0f)])) in _dbus_string_append_byte_as_hex()
86980 static const char hexdigits[] = {87014 zText[(i*2)+2] = hexdigits[(zBlob[i]>>4)&0x0F];87015 zText[(i*2)+3] = hexdigits[(zBlob[i])&0x0F];87078 *(z++) = hexdigits[(c>>4)&0xf];87079 *(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];