Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Utility/
H A DArgs.cpp527 unsigned long hex_value = strtoul(hex_str, nullptr, 16); in EncodeEscapeSequences() local
528 if (hex_value <= UINT8_MAX) in EncodeEscapeSequences()
529 dst.append(1, static_cast<char>(hex_value)); in EncodeEscapeSequences()
/llvm-project-15.0.7/llvm/docs/CommandGuide/
H A Dllvm-exegesis.rst96 directive `LLVM-EXEGESIS-DEFREG <reg name> <hex_value>`, where `<hex_value>`
97 is a bit pattern used to fill `<reg_name>`. If `<hex_value>` is smaller than
/llvm-project-15.0.7/llvm/lib/Support/
H A DAPFloat.cpp2562 integerPart hex_value; in convertFromHexadecimalString() local
2571 hex_value = hexDigitValue(*p); in convertFromHexadecimalString()
2572 if (hex_value == -1U) in convertFromHexadecimalString()
2580 hex_value <<= bitPos % integerPartWidth; in convertFromHexadecimalString()
2581 significand[bitPos / integerPartWidth] |= hex_value; in convertFromHexadecimalString()
2583 auto FractOrErr = trailingHexadecimalFraction(p, end, hex_value); in convertFromHexadecimalString()
/llvm-project-15.0.7/lldb/source/Core/
H A DFormatEntity.cpp2148 unsigned long hex_value = strtoul(hex_str, nullptr, 16); in ParseInternal() local
2149 if (hex_value <= UINT8_MAX) { in ParseInternal()
2150 parent_entry.AppendChar((char)hex_value); in ParseInternal()