Searched refs:hex_digit (Results 1 – 2 of 2) sorted by relevance
42 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
502 hex_digit(uint8_t nibble) in hex_digit() function592 buf[0] = hex_digit(v >> 4); in format_byte()593 buf[1] = hex_digit(v & 0xf); in format_byte()