HomeSort by: relevance | last modified time | path
    Searched refs:hexdigits (Results 1 - 25 of 33) sorted by relevancy

1 2

  /src/sys/lib/libsa/
ether_sprintf.c 66 *cp++ = hexdigits[*ap >> 4];
67 *cp++ = hexdigits[*ap++ & 0xf];
subr_prf.c 68 const char hexdigits[16] = "0123456789abcdef"; variable
321 *p++ = hexdigits[ul % base];
stand.h 310 extern const char hexdigits[];
  /src/sys/arch/alpha/stand/common/
putulong.c 35 *bp++ = hexdigits[ul & 0xf];
  /src/sys/lib/libkern/
hexdump.c 38 static const char hexdigits[] = "0123456789abcdef"; variable
67 buf[p++] = hexdigits[(c >> 4) & 0xf];
68 buf[p++] = hexdigits[(c >> 0) & 0xf];
  /src/sys/net/
dl_print.c 37 static const char hexdigits[] = "0123456789abcdef"; variable
53 *dp++ = hexdigits[(*sp) >> 4];
56 *dp++ = hexdigits[(*sp++) & 0xf];
if_arcsubr.c 580 *cp++ = hexdigits[*ap >> 4];
581 *cp++ = hexdigits[*ap++ & 0xf];
ppp_tty.c 1079 *bp++ = hexdigits[*b >> 4]; /* convert byte to ascii hex */
1080 *bp++ = hexdigits[*b++ & 0xf];
  /src/sys/netinet6/
in6_print.c 38 static const uint8_t hexdigits[] = "0123456789abcdef"; variable
67 uint8_t n = hexdigits[(v)]; \
  /src/sys/netatalk/
at_rmx.c 70 *bp++ = hexdigits[*cp / 16];
71 *bp++ = hexdigits[*cp % 16];
ddp_input.c 348 xout[(i * 3)] = hexdigits[(*data & 0xf0) >> 4];
349 xout[(i * 3) + 1] = hexdigits[*data & 0x0f];
  /src/sbin/efi/
devpath2.c 58 static const char hexdigits[] = "0123456789ABCDEF"; local
78 text[3] = hexdigits[hi_nib(u.b[3])];
79 text[4] = hexdigits[lo_nib(u.b[3])];
80 text[5] = hexdigits[hi_nib(u.b[2])];
81 text[6] = hexdigits[lo_nib(u.b[2])];
  /src/libexec/ld.elf_so/
xprintf.c 153 const char hexdigits[] = "0123456789abcdef"; local
170 *bp++ = hexdigits[(val & mask) >> bits];
  /src/sys/fs/filecorefs/
filecore_utils.c 321 *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];
  /src/tests/kernel/
gen_t_subr_prf 44 static const char HEXDIGITS[] = "0123456789ABCDEF";
45 static const char hexdigits[] = "0123456789abcdef";
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/
srp-thread.c 322 char *hexdigits = "01234567689abcdef"; local
342 *bufp++ = hexdigits[msg[i + j] >> 4];
344 *bufp++ = hexdigits[msg[i + j] % 15];
  /src/sys/kern/
kgdb_stub.c 172 return (hexdigits[n & 0x0f]);
subr_prf.c 132 const char hexdigits[] = "0123456789abcdef"; variable
133 const char HEXDIGITS[] = "0123456789ABCDEF";
1441 xdigs = hexdigits;
1475 xdigs = HEXDIGITS;
1478 xdigs = hexdigits;
  /src/external/bsd/nsd/dist/
util.c 543 static char hexdigits[] = { local
554 *target++ = hexdigits[src[i] >> 4U];
555 *target++ = hexdigits[src[i] & 0xfU];
  /src/sys/arch/next68k/stand/boot/
en.c 171 #define XCHR(x) hexdigits[(x) & 0xf]
  /src/external/bsd/unbound/dist/util/
net_help.c 2011 static char hexdigits[] = { local
2022 *target++ = hexdigits[src[i] >> 4U];
2023 *target++ = hexdigits[src[i] & 0xfU];
  /src/external/mpl/dhcp/bind/dist/lib/dns/
rdata.c 602 static const char hexdigits[] = "0123456789abcdef"; variable
2048 if ((s = strchr(hexdigits, c)) == NULL) {
2051 return ((int)(s - hexdigits));
tkey.c 829 static char hexdigits[16] = { '0', '1', '2', '3', local
842 randomtext[j++] = hexdigits[val >> 4];
843 randomtext[j++] = hexdigits[val & 0xF];
  /src/sys/arch/next68k/dev/
mb8795.c 210 #define XCHR(x) hexdigits[(x) & 0xf]
  /src/sys/sys/
systm.h 110 extern const char hexdigits[]; /* "0123456789abcdef" in subr_prf.c */
111 extern const char HEXDIGITS[]; /* "0123456789ABCDEF" in subr_prf.c */

Completed in 63 milliseconds

1 2