| /openbsd-src/gnu/usr.bin/binutils/include/ |
| H A D | libiberty.h | 262 #define hex_p(c) (hex_value (c) != _hex_bad) 265 #define hex_value(c) ((unsigned int) _hex_value[(unsigned char) (c)]) macro
|
| /openbsd-src/gnu/llvm/lldb/tools/lldb-vscode/ |
| H A D | BreakpointBase.cpp | 143 unsigned long hex_value = strtoul(hex_str, nullptr, 16); in FormatLogText() local 144 if (hex_value <= UINT8_MAX) { in FormatLogText() 145 formatted.push_back((char)hex_value); in FormatLogText()
|
| /openbsd-src/gnu/lib/libiberty/include/ |
| H A D | libiberty.h | 340 #define hex_p(c) (hex_value (c) != _hex_bad) 343 #define hex_value(c) ((unsigned int) _hex_value[(unsigned char) (c)]) macro
|
| /openbsd-src/gnu/gcc/include/ |
| H A D | libiberty.h | 340 #define hex_p(c) (hex_value (c) != _hex_bad) 343 #define hex_value(c) ((unsigned int) _hex_value[(unsigned char) (c)]) macro
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/include/ |
| H A D | libiberty.h | 340 #define hex_p(c) (hex_value (c) != _hex_bad) 343 #define hex_value(c) ((unsigned int) _hex_value[(unsigned char) (c)]) macro
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/bfd/ |
| H A D | tekhex.c | 90 #define NIBBLE(x) hex_value(x) 277 len = hex_value (*src++); in getvalue() 284 value = value << 4 | hex_value (*src++); in getvalue() 302 len = hex_value (*src++); in getsym()
|
| H A D | ihex.c | 133 #define NIBBLE(x) (hex_value (x))
|
| H A D | srec.c | 115 #define NIBBLE(x) hex_value(x)
|
| /openbsd-src/gnu/usr.bin/binutils/bfd/ |
| H A D | tekhex.c | 94 #define NIBBLE(x) hex_value(x) 317 len = hex_value(*src++); in getvalue() 325 value = value << 4 | hex_value(*src++); in getvalue() 342 len = hex_value(*src++); in getsym()
|
| H A D | ihex.c | 161 #define NIBBLE(x) (hex_value (x))
|
| /openbsd-src/gnu/llvm/lldb/source/Utility/ |
| H A D | Args.cpp | 532 unsigned long hex_value = strtoul(hex_str, nullptr, 16); in EncodeEscapeSequences() local 533 if (hex_value <= UINT8_MAX) in EncodeEscapeSequences() 534 dst.append(1, static_cast<char>(hex_value)); in EncodeEscapeSequences()
|
| /openbsd-src/gnu/llvm/llvm/docs/CommandGuide/ |
| H A D | llvm-exegesis.rst | 97 directive `LLVM-EXEGESIS-DEFREG <reg name> <hex_value>`, where `<hex_value>` 98 is a bit pattern used to fill `<reg_name>`. If `<hex_value>` is smaller than
|
| /openbsd-src/gnu/usr.bin/binutils/gas/ |
| H A D | expr.c | 376 (digit = hex_value (c)) < maxdig; in integer_constant() 403 (digit = hex_value (c)) < maxdig; in integer_constant() 479 for (; (carry = hex_value (c)) < maxdig; c = *input_line_pointer++) in integer_constant()
|
| /openbsd-src/gnu/gcc/libcpp/ |
| H A D | charset.c | 972 result = (result << 4) + hex_value (c); in _cpp_valid_ucn() 1142 n = (n << 4) + hex_value (c); in convert_hex() 1552 value = (value << 4) + hex_value (id[idp]); in _cpp_interpret_identifier()
|
| H A D | expr.c | 205 c = hex_value (c); in cpp_classify_number() 419 c = hex_value (c); in cpp_interpret_integer()
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/gas/ |
| H A D | expr.c | 350 (digit = hex_value (c)) < maxdig; in integer_constant() 377 (digit = hex_value (c)) < maxdig; in integer_constant() 453 for (; (carry = hex_value (c)) < maxdig; c = *input_line_pointer++) in integer_constant()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/java/ |
| H A D | lex.c | 568 unicode |= (unicode_t)(hex_value (c) << shift); 1065 int numeric = hex_value (c);
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/ |
| H A D | cppexp.c | 195 c = hex_value (c); 392 c = hex_value (c);
|
| H A D | real.c | 1826 d = hex_value (*str); 1848 d = hex_value (*str); 2202 while ((d = hex_value (*str)) < base)
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/gas/config/ |
| H A D | tc-iq2000.c | 922 val |= hex_value (*input_line_pointer++); in get_number()
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | APFloat.cpp | 2689 integerPart hex_value; in convertFromHexadecimalString() local 2698 hex_value = hexDigitValue(*p); in convertFromHexadecimalString() 2699 if (hex_value == -1U) in convertFromHexadecimalString() 2707 hex_value <<= bitPos % integerPartWidth; in convertFromHexadecimalString() 2708 significand[bitPos / integerPartWidth] |= hex_value; in convertFromHexadecimalString() 2710 auto FractOrErr = trailingHexadecimalFraction(p, end, hex_value); in convertFromHexadecimalString()
|
| /openbsd-src/gnu/usr.bin/binutils/gas/config/ |
| H A D | tc-iq2000.c | 1166 val |= hex_value (*input_line_pointer++); in get_number()
|
| /openbsd-src/gnu/llvm/lldb/source/Core/ |
| H A D | FormatEntity.cpp | 2114 unsigned long hex_value = strtoul(hex_str, nullptr, 16); in ParseInternal() local 2115 if (hex_value <= UINT8_MAX) { in ParseInternal() 2116 parent_entry.AppendChar((char)hex_value); in ParseInternal()
|
| /openbsd-src/gnu/gcc/gcc/ |
| H A D | real.c | 1823 d = hex_value (*str); in real_from_string() 1849 d = hex_value (*str); in real_from_string() 2215 while ((d = hex_value (*str)) < base) in real_nan()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/f/ |
| H A D | target.c | 1452 c = hex_value (c); in ffetarget_integerhex() 2487 new_value += hex_value (c); in ffetarget_typeless_hex()
|