HomeSort by: relevance | last modified time | path
    Searched defs:hexdigits (Results 1 - 20 of 20) sorted by relevancy

  /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];
  /src/crypto/external/bsd/openssl/dist/crypto/
params_from_text.c 121 size_t hexdigits = strlen(value); local
122 if ((hexdigits % 2) != 0) {
127 *buf_n = hexdigits >> 1;
  /src/sys/netinet6/
in6_print.c 38 static const uint8_t hexdigits[] = "0123456789abcdef"; variable
67 uint8_t n = hexdigits[(v)]; \
  /src/crypto/external/apache2/openssl/dist/crypto/
params_from_text.c 119 size_t hexdigits = strlen(value); local
120 if ((hexdigits % 2) != 0) {
125 *buf_n = hexdigits >> 1;
  /src/libexec/ld.elf_so/
xprintf.c 153 const char hexdigits[] = "0123456789abcdef"; local
170 *bp++ = hexdigits[(val & mask) >> bits];
  /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/sys/lib/libsa/
subr_prf.c 68 const char hexdigits[16] = "0123456789abcdef"; variable
321 *p++ = hexdigits[ul % base];
  /src/crypto/external/bsd/heimdal/dist/kadmin/
util.c 693 static char hexdigits[] = "0123456789abcdef"; local
696 p = strchr (hexdigits, tolower((unsigned char)c));
700 return p - hexdigits;
  /src/crypto/external/bsd/netpgp/dist/src/libdigest/
tiger.c 705 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];
  /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/arch/m68k/m68k/
db_disasm.c 175 static const char hexdigits[] = "0123456789abcdef"; variable
3071 *++p = hexdigits[val % base];
3106 *++p = hexdigits[val % base];
  /src/sys/kern/
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];
rdata.c 527 static const char hexdigits[] = { local
536 buffer_write_u8(output, hexdigits[octet >> 4]);
537 buffer_write_u8(output, hexdigits[octet & 0x0f]);
  /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/
tkey.c 829 static char hexdigits[16] = { '0', '1', '2', '3', local
842 randomtext[j++] = hexdigits[val >> 4];
843 randomtext[j++] = hexdigits[val & 0xF];
rdata.c 602 static const char hexdigits[] = "0123456789abcdef"; variable
2048 if ((s = strchr(hexdigits, c)) == NULL) {
2051 return ((int)(s - hexdigits));
  /src/usr.bin/make/
var.c 1857 static const char hexdigits[] = "0123456789abcdef"; local
1907 buf[i] = hexdigits[h & 0x0f];
  /src/external/public-domain/sqlite/dist/
sqlite3.c 128981 static const char hexdigits[] = { local
    [all...]

Completed in 104 milliseconds