Searched refs:hex_digit (Results 1 – 4 of 4) sorted by relevance
38 hex_digit(uint8_t bval, int uppercase) in hex_digit() function63 hex[i * 2] = hex_digit(p[i] >> 4, uppercase); in k5_hex_encode()64 hex[i * 2 + 1] = hex_digit(p[i] & 0xF, uppercase); in k5_hex_encode()
601 static ossl_inline int hex_digit(int v) in hex_digit() function684 obuf[2 + i] = hex_digit((u_str[0] >> ((3 - i) * 4)) & 0x0F); in json_write_qstring_inner()746 json_write_char(json, hex_digit(c >> 4)); in ossl_json_str_hex()747 json_write_char(json, hex_digit(c & 0x0F)); in ossl_json_str_hex()
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()