Home
last modified time | relevance | path

Searched refs:hexdigits (Results 1 – 7 of 7) sorted by relevance

/openbsd/src/gnu/usr.bin/perl/cpan/Digest-MD5/
DMD5.xs166 static const char hexdigits[] = "0123456789abcdef"; in hex_16() local
171 *d++ = hexdigits[(*from >> 4)]; in hex_16()
172 *d++ = hexdigits[(*from & 0x0F)]; in hex_16()
/openbsd/src/gnu/llvm/lldb/examples/python/
Dgdbremote.py328 return str[0] in string.hexdigits and str[1] in string.hexdigits
445 0] in string.hexdigits and self.str[1] in string.hexdigits:
521 while n < str_len and self.str[n] in string.hexdigits:
528 if self.str[i] not in string.hexdigits:
/openbsd/src/usr.sbin/nsd/
Dutil.c621 static char hexdigits[] = { in hex_ntop() local
632 *target++ = hexdigits[src[i] >> 4U]; in hex_ntop()
633 *target++ = hexdigits[src[i] & 0xfU]; in hex_ntop()
Drdata.c421 static const char hexdigits[] = { in hex_to_string() local
430 buffer_write_u8(output, hexdigits[octet >> 4]); in hex_to_string()
431 buffer_write_u8(output, hexdigits[octet & 0x0f]); in hex_to_string()
/openbsd/src/sbin/unwind/libunbound/util/
Dnet_help.c1879 static char hexdigits[] = { in hex_ntop() local
1890 *target++ = hexdigits[src[i] >> 4U]; in hex_ntop()
1891 *target++ = hexdigits[src[i] & 0xfU]; in hex_ntop()
/openbsd/src/usr.sbin/unbound/util/
Dnet_help.c1879 static char hexdigits[] = { in hex_ntop() local
1890 *target++ = hexdigits[src[i] >> 4U]; in hex_ntop()
1891 *target++ = hexdigits[src[i] & 0xfU]; in hex_ntop()
/openbsd/src/gnu/usr.bin/gcc/gcc/f/
Dtarget.c2194 static const char hexdigits[16] = "0123456789ABCDEF"; in ffetarget_print_hex() local
2203 *--p = hexdigits[value & 4]; in ffetarget_print_hex()