Home
last modified time | relevance | path

Searched refs:hex_str (Results 1 – 3 of 3) sorted by relevance

/freebsd/crypto/openssl/providers/implementations/encode_decode/
H A Dencode_key2text.c55 char *hex_str = NULL, *p; in DEFINE_SPECIAL_STACK_OF_CONST() local
82 hex_str = BN_bn2hex(bn); in DEFINE_SPECIAL_STACK_OF_CONST()
83 if (hex_str == NULL) in DEFINE_SPECIAL_STACK_OF_CONST()
86 p = hex_str; in DEFINE_SPECIAL_STACK_OF_CONST()
125 OPENSSL_free(hex_str); in DEFINE_SPECIAL_STACK_OF_CONST()
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DArgs.cpp527 char hex_str[3] = {*p, '\0', '\0'}; in EncodeEscapeSequences() local
530 hex_str[1] = *p; in EncodeEscapeSequences()
533 unsigned long hex_value = strtoul(hex_str, nullptr, 16); in EncodeEscapeSequences()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp2093 char hex_str[3] = {0, 0, 0}; in ParseInternal() local
2094 hex_str[0] = format[0]; in ParseInternal()
2099 hex_str[1] = format[0]; in ParseInternal()
2103 unsigned long hex_value = strtoul(hex_str, nullptr, 16); in ParseInternal()