Home
last modified time | relevance | path

Searched refs:hex_digit (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/elftoolchain/elfcopy/
H A Dascii.c42 static char hex_digit(uint8_t n);
1036 line[*len] = hex_digit((b >> 4) & 0xF); in write_num()
1037 line[*len + 1] = hex_digit(b & 0xF); in write_num()
1045 hex_digit(uint8_t n) in hex_digit() function
/freebsd/usr.sbin/bhyve/
H A Dgdb.c502 hex_digit(uint8_t nibble) in hex_digit() function
592 buf[0] = hex_digit(v >> 4); in format_byte()
593 buf[1] = hex_digit(v & 0xf); in format_byte()