Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DArgs.cpp523 unsigned long octal_value = ::strtoul(oct_str, nullptr, 8); in EncodeEscapeSequences() local
524 if (octal_value <= UINT8_MAX) { in EncodeEscapeSequences()
525 dst.append(1, static_cast<char>(octal_value)); in EncodeEscapeSequences()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp2265 unsigned long octal_value = ::strtoul(oct_str, nullptr, 8); in ParseInternal() local
2266 if (octal_value <= UINT8_MAX) { in ParseInternal()
2267 parent_entry.AppendChar((char)octal_value); in ParseInternal()