Home
last modified time | relevance | path

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

/freebsd/crypto/krb5/src/util/support/
H A Dhex.c38 hex_digit(uint8_t bval, int uppercase) in hex_digit() function
63 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()
/freebsd/crypto/openssl/ssl/quic/
H A Djson_enc.c601 static ossl_inline int hex_digit(int v) in hex_digit() function
684 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()
/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()