Home
last modified time | relevance | path

Searched refs:hex2ascii_data (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/sys/libkern/
H A Dbcd.c39 char const hex2ascii_data[] = "0123456789abcdefghijklmnopqrstuvwxyz"; variable
40 CTASSERT(nitems(hex2ascii_data) == LIBKERN_LEN_HEX2ASCII + 1);
/freebsd-14.2/stand/libsa/
H A Dbcd.c35 char const hex2ascii_data[] = "0123456789abcdefghijklmnopqrstuvwxyz"; variable
H A Dstand.h385 extern char const hex2ascii_data[];
389 #define hex2ascii(hex) (hex2ascii_data[hex])
/freebsd-14.2/sys/sys/
H A Dlibkern.h51 extern char const hex2ascii_data[];
81 return (hex2ascii_data[hex]); in hex2ascii()