OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:hexdigits
(Results
1 - 9
of
9
) sorted by relevancy
/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];
/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/libexec/ld.elf_so/
xprintf.c
153
const char
hexdigits
[] = "0123456789abcdef";
local in function:xvsnprintf
170
*bp++ =
hexdigits
[(val & mask) >> bits];
/src/sys/lib/libsa/
subr_prf.c
68
const char
hexdigits
[16] = "0123456789abcdef";
variable in typeref:typename:const char[16]
321
*p++ =
hexdigits
[ul % base];
/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/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/kern/
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/usr.bin/make/
var.c
1853
static const char
hexdigits
[] = "0123456789abcdef";
local in function:Hash
1903
buf[i] =
hexdigits
[h & 0x0f];
Completed in 19 milliseconds
Indexes created Sun Sep 21 14:09:52 GMT 2025