Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Utility/
H A DArgs.cpp520 char hex_str[3] = {*p, '\0', '\0'}; in EncodeEscapeSequences() local
523 hex_str[1] = *p; in EncodeEscapeSequences()
526 unsigned long hex_value = strtoul(hex_str, nullptr, 16); in EncodeEscapeSequences()
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp2139 char hex_str[3] = {0, 0, 0}; in ParseInternal() local
2140 hex_str[0] = format[0]; in ParseInternal()
2145 hex_str[1] = format[0]; in ParseInternal()
2149 unsigned long hex_value = strtoul(hex_str, nullptr, 16); in ParseInternal()