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

/freebsd-current/contrib/less/
H A Dttyin.c213 static int hex_value = 0;
231 hex_value = (hex_value << 4) | v;
237 c = hex_value;
/freebsd-current/contrib/llvm-project/lldb/source/Utility/
H A DArgs.cpp533 unsigned long hex_value = strtoul(hex_str, nullptr, 16); local
534 if (hex_value <= UINT8_MAX)
535 dst.append(1, static_cast<char>(hex_value));
/freebsd-current/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]);
1052 hex_value(int x) function
/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp2843 integerPart hex_value;
2852 hex_value = hexDigitValue(*p);
2853 if (hex_value == UINT_MAX)
2861 hex_value <<= bitPos % integerPartWidth;
2862 significand[bitPos / integerPartWidth] |= hex_value;
2864 auto FractOrErr = trailingHexadecimalFraction(p, end, hex_value);
/freebsd-current/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp2103 unsigned long hex_value = strtoul(hex_str, nullptr, 16); local
2104 if (hex_value <= UINT8_MAX) {
2105 parent_entry.AppendChar((char)hex_value);

Completed in 143 milliseconds