Searched refs:hexdigits (Results 1 - 25 of 35) sorted by relevance

12

/netbsd-current/sys/lib/libsa/
H A Dether_sprintf.c66 *cp++ = hexdigits[*ap >> 4];
67 *cp++ = hexdigits[*ap++ & 0xf];
H A Dsubr_prf.c68 const char hexdigits[16] = "0123456789abcdef"; variable
318 *p++ = hexdigits[ul % base];
H A Dstand.h310 extern const char hexdigits[];
/netbsd-current/sys/arch/alpha/stand/common/
H A Dputulong.c35 *bp++ = hexdigits[ul & 0xf];
/netbsd-current/sys/lib/libkern/
H A Dhexdump.c38 static const char hexdigits[] = "0123456789abcdef"; variable
67 buf[p++] = hexdigits[(c >> 4) & 0xf];
68 buf[p++] = hexdigits[(c >> 0) & 0xf];
/netbsd-current/sys/net/
H A Ddl_print.c37 static const char hexdigits[] = "0123456789abcdef"; variable
53 *dp++ = hexdigits[(*sp) >> 4];
56 *dp++ = hexdigits[(*sp++) & 0xf];
H A Dif_arcsubr.c586 *cp++ = hexdigits[*ap >> 4];
587 *cp++ = hexdigits[*ap++ & 0xf];
H A Dppp_tty.c1083 *bp++ = hexdigits[*b >> 4]; /* convert byte to ascii hex */
1084 *bp++ = hexdigits[*b++ & 0xf];
/netbsd-current/sys/netinet6/
H A Din6_print.c38 static const uint8_t hexdigits[] = "0123456789abcdef"; variable
67 uint8_t n = hexdigits[(v)]; \
/netbsd-current/sys/netatalk/
H A Dat_rmx.c70 *bp++ = hexdigits[*cp / 16];
71 *bp++ = hexdigits[*cp % 16];
H A Dddp_input.c348 xout[(i * 3)] = hexdigits[(*data & 0xf0) >> 4];
349 xout[(i * 3) + 1] = hexdigits[*data & 0x0f];
/netbsd-current/libexec/ld.elf_so/
H A Dxprintf.c153 const char hexdigits[] = "0123456789abcdef"; local
170 *bp++ = hexdigits[(val & mask) >> bits];
/netbsd-current/sys/fs/filecorefs/
H A Dfilecore_utils.c321 *ufn++ = hexdigits[(ip->i_dirent.load >> 10) & 15];
322 *ufn++ = hexdigits[(ip->i_dirent.load >> 9) & 15];
323 *ufn++ = hexdigits[(ip->i_dirent.load >> 8) & 15];
/netbsd-current/tests/kernel/
H A Dgen_t_subr_prf45 static const char hexdigits[] = "0123456789abcdef";
/netbsd-current/crypto/external/bsd/heimdal/dist/kadmin/
H A Dutil.c693 static char hexdigits[] = "0123456789abcdef"; local
696 p = strchr (hexdigits, tolower((unsigned char)c));
700 return p - hexdigits;
/netbsd-current/crypto/external/bsd/netpgp/dist/src/libdigest/
H A Dtiger.c705 static const char hexdigits[] = "0123456789abcdef"; local
711 buf[2 * (7 - i)] = hexdigits[(val >> (56 - 8 * i + 4)) & 15];
712 buf[(2 * (7 - i)) + 1] = hexdigits[(val >> (56 - 8 * i)) & 15];
714 buf[2 * i] = hexdigits[(val >> (56 - 8 * i + 4)) & 15];
715 buf[(2 * i) + 1] = hexdigits[(val >> (56 - 8 * i)) & 15];
/netbsd-current/sys/kern/
H A Dkgdb_stub.c172 return (hexdigits[n & 0x0f]);
H A Dsubr_prf.c132 const char hexdigits[] = "0123456789abcdef"; variable
1441 xdigs = hexdigits;
1478 xdigs = hexdigits;
/netbsd-current/external/bsd/nsd/dist/
H A Dutil.c613 static char hexdigits[] = { local
624 *target++ = hexdigits[src[i] >> 4U];
625 *target++ = hexdigits[src[i] & 0xfU];
H A Drdata.c421 static const char hexdigits[] = { local
430 buffer_write_u8(output, hexdigits[octet >> 4]);
431 buffer_write_u8(output, hexdigits[octet & 0x0f]);
/netbsd-current/sys/arch/next68k/stand/boot/
H A Den.c171 #define XCHR(x) hexdigits[(x) & 0xf]
/netbsd-current/external/mpl/dhcp/bind/dist/lib/dns/
H A Drdata.c602 static const char hexdigits[] = "0123456789abcdef"; variable
2048 if ((s = strchr(hexdigits, c)) == NULL) {
2051 return ((int)(s - hexdigits));
H A Dtkey.c829 static char hexdigits[16] = { '0', '1', '2', '3', local
842 randomtext[j++] = hexdigits[val >> 4];
843 randomtext[j++] = hexdigits[val & 0xF];
/netbsd-current/external/mpl/bind/dist/lib/dns/
H A Dtkey.c830 static char hexdigits[16] = { '0', '1', '2', '3', local
843 randomtext[j++] = hexdigits[val >> 4];
844 randomtext[j++] = hexdigits[val & 0xF];
H A Drdata.c604 static const char hexdigits[] = "0123456789abcdef"; variable
2050 if ((s = strchr(hexdigits, c)) == NULL) {
2053 return ((int)(s - hexdigits));

Completed in 254 milliseconds

12