HomeSort by: relevance | last modified time | path
    Searched refs:hexdigits (Results 1 - 25 of 27) 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 in typeref:typename:const char[16]
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 in typeref:typename:const char[]
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 in typeref:typename:const char[]
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];
if_ppp.c 1785 *bp++ = hexdigits[*rptr >> 4];
1786 *bp++ = hexdigits[*rptr++ & 0xf];
if_ethersubr.c 1064 *cp++ = hexdigits[*ap >> 4];
1065 *cp++ = hexdigits[*ap++ & 0xf];
  /src/sys/netinet6/
in6_print.c 38 static const uint8_t hexdigits[] = "0123456789abcdef"; variable in typeref:typename:const uint8_t[]
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 in function:eisaid_to_str
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 in function:xvsnprintf
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/sys/kern/
kgdb_stub.c 172 return (hexdigits[n & 0x0f]);
subr_prf.c 132 const char hexdigits[] = "0123456789abcdef"; variable in typeref:typename:const char[]
133 const char HEXDIGITS[] = "0123456789ABCDEF";
1441 xdigs = hexdigits;
1475 xdigs = HEXDIGITS;
1478 xdigs = hexdigits;
  /src/sys/arch/next68k/stand/boot/
en.c 171 #define XCHR(x) hexdigits[(x) & 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 */
  /src/sys/arch/m68k/m68k/
db_disasm.c 175 static const char hexdigits[] = "0123456789abcdef"; variable in typeref:typename:const char[]
3071 *++p = hexdigits[val % base];
3106 *++p = hexdigits[val % base];
  /src/sys/nfs/
nfs_vnops.c 2848 sp->s_name[8] = hexdigits[pid & 0xf];
2849 sp->s_name[7] = hexdigits[(pid >> 4) & 0xf];
2850 sp->s_name[6] = hexdigits[(pid >> 8) & 0xf];
2851 sp->s_name[5] = hexdigits[(pid >> 12) & 0xf];
  /src/sys/arch/xen/xen/
if_xennet_xenbus.c 1475 #define XCHR(x) hexdigits[(x) & 0xf]

Completed in 30 milliseconds

1 2