Home
last modified time | relevance | path

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

/freebsd/contrib/less/
H A Dttyin.c234 static int hex_value = 0; in getchr()
252 hex_value = (hex_value << 4) | v;
258 c = hex_value;
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DArgs.cpp533 unsigned long hex_value = strtoul(hex_str, nullptr, 16); in EncodeEscapeSequences()
534 if (hex_value <= UINT8_MAX) in EncodeEscapeSequences()
535 dst.append(1, static_cast<char>(hex_value)); in EncodeEscapeSequences()
532 unsigned long hex_value = strtoul(hex_str, nullptr, 16); EncodeEscapeSequences() local
/freebsd/contrib/elftoolchain/elfcopy/
H A Dascii.c43 static int hex_value(int x);
1019 b = (hex_value(line[*len]) << 4) | hex_value(line[*len + 1]); in read_num()
1052 hex_value(int x) in hex_value() function
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp2874 integerPart hex_value; in convertFromHexadecimalString() local
2883 hex_value = hexDigitValue(*p); in convertFromHexadecimalString()
2884 if (hex_value == UINT_MAX) in convertFromHexadecimalString()
2892 hex_value <<= bitPos % integerPartWidth; in convertFromHexadecimalString()
2893 significand[bitPos / integerPartWidth] |= hex_value; in convertFromHexadecimalString()
2895 auto FractOrErr = trailingHexadecimalFraction(p, end, hex_value); in convertFromHexadecimalString()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp2152 unsigned long hex_value = strtoul(hex_str, nullptr, 16); in ParseInternal() local
2153 if (hex_value <= UINT8_MAX) { in ParseInternal()
2154 parent_entry.AppendChar((char)hex_value); in ParseInternal()