HomeSort by: relevance | last modified time | path
    Searched defs:hexdigits (Results 1 - 9 of 9) 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/sys/netinet6/
in6_print.c 38 static const uint8_t hexdigits[] = "0123456789abcdef"; variable
67 uint8_t n = hexdigits[(v)]; \
  /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/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/usr.bin/make/
var.c 1857 static const char hexdigits[] = "0123456789abcdef"; local
1907 buf[i] = hexdigits[h & 0x0f];

Completed in 26 milliseconds