Home
last modified time | relevance | path

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

/freebsd-14-stable/contrib/elftoolchain/elfcopy/
HDascii.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-14-stable/usr.sbin/bhyve/
HDgdb.c415 hex_digit(uint8_t nibble) in hex_digit() function
505 buf[0] = hex_digit(v >> 4); in format_byte()
506 buf[1] = hex_digit(v & 0xf); in format_byte()