| /freebsd-12.1/contrib/binutils/opcodes/ |
| H A D | spu-dis.c | 96 int hex_value; in print_insn_spu() local 137 hex_value = 0; in print_insn_spu() 190 hex_value = DECODE_INSN_I7 (insn); in print_insn_spu() 203 hex_value = DECODE_INSN_I10 (insn); in print_insn_spu() 207 hex_value = DECODE_INSN_I10 (insn) * 16; in print_insn_spu() 211 hex_value = DECODE_INSN_I16 (insn); in print_insn_spu() 215 hex_value = DECODE_INSN_U16 (insn); in print_insn_spu() 224 hex_value = memaddr + value; in print_insn_spu() 239 hex_value = value; in print_insn_spu() 246 hex_value = DECODE_INSN_U14 (insn); in print_insn_spu() [all …]
|
| /freebsd-12.1/contrib/less/ |
| H A D | ttyin.c | 143 static int hex_value = 0; in getchr() 161 hex_value = (hex_value << 4) | v; in getchr() 167 c = hex_value; in getchr()
|
| /freebsd-12.1/contrib/gdb/include/ |
| H A D | libiberty.h | 259 #define hex_p(c) (hex_value (c) != _hex_bad) 262 #define hex_value(c) ((unsigned int) _hex_value[(unsigned char) (c)]) macro
|
| /freebsd-12.1/contrib/binutils/include/ |
| H A D | libiberty.h | 351 #define hex_p(c) (hex_value (c) != _hex_bad) 354 #define hex_value(c) ((unsigned int) _hex_value[(unsigned char) (c)]) macro
|
| /freebsd-12.1/contrib/gcclibs/include/ |
| H A D | libiberty.h | 344 #define hex_p(c) (hex_value (c) != _hex_bad) 347 #define hex_value(c) ((unsigned int) _hex_value[(unsigned char) (c)]) macro
|
| H A D | ChangeLog-9103 | 179 * libiberty.h (hex_value): Make the value an unsigned int, to 1885 hex_p, hex_value): New macros and declarations, for hex.c.
|
| /freebsd-12.1/contrib/binutils/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)
|
| H A D | ChangeLog-9495 | 4125 hex_value and replace references to it with references to 4126 hex_init, hex_p, and hex_value. 8696 * srec.c (hex_value): Always set to a size of 256 bytes.
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/ |
| H A D | Args.cpp | 567 unsigned long hex_value = strtoul(hex_str, nullptr, 16); in EncodeEscapeSequences() local 568 if (hex_value <= UINT8_MAX) in EncodeEscapeSequences() 569 dst.append(1, (char)hex_value); in EncodeEscapeSequences()
|
| /freebsd-12.1/contrib/elftoolchain/elfcopy/ |
| H A D | ascii.c | 43 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-12.1/contrib/gcclibs/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 | 208 c = hex_value (c); in cpp_classify_number() 422 c = hex_value (c); in cpp_interpret_integer()
|
| /freebsd-12.1/contrib/binutils/gas/ |
| H A D | expr.c | 349 (digit = hex_value (c)) < maxdig; in integer_constant() 376 (digit = hex_value (c)) < maxdig; in integer_constant() 452 for (; (carry = hex_value (c)) < maxdig; c = *input_line_pointer++) in integer_constant()
|
| H A D | read.c | 4521 d = hex_value (*input_line_pointer) << 4; in hex_float() 4527 d += hex_value (*input_line_pointer); in hex_float()
|
| /freebsd-12.1/contrib/llvm/lib/Support/ |
| H A D | APFloat.cpp | 2289 integerPart hex_value; in convertFromHexadecimalString() local 2297 hex_value = hexDigitValue(*p); in convertFromHexadecimalString() 2298 if (hex_value == -1U) in convertFromHexadecimalString() 2306 hex_value <<= bitPos % integerPartWidth; in convertFromHexadecimalString() 2307 significand[bitPos / integerPartWidth] |= hex_value; in convertFromHexadecimalString() 2309 lost_fraction = trailingHexadecimalFraction(p, end, hex_value); in convertFromHexadecimalString()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Core/ |
| H A D | FormatEntity.cpp | 2122 unsigned long hex_value = strtoul(hex_str, nullptr, 16); in ParseInternal() local 2123 if (hex_value <= UINT8_MAX) { in ParseInternal() 2124 parent_entry.AppendChar((char)hex_value); in ParseInternal()
|
| /freebsd-12.1/contrib/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()
|
| /freebsd-12.1/contrib/gcclibs/libiberty/ |
| H A D | functions.texi | 405 call to @code{hex_p} or @code{hex_value}. If you fail to call it, a 420 @deftypefn Extension {unsigned int} hex_value (int @var{c}) 427 The @code{hex_value} macro returns @code{unsigned int}, rather than
|
| H A D | ChangeLog | 941 * hex.c (hex_value): Group 'unsigned int' together to get correct 1751 (hex_value): Update documentation for new return type. hex_value
|
| /freebsd-12.1/contrib/binutils/libiberty/ |
| H A D | functions.texi | 421 call to @code{hex_p} or @code{hex_value}. If you fail to call it, a 436 @deftypefn Extension {unsigned int} hex_value (int @var{c}) 443 The @code{hex_value} macro returns @code{unsigned int}, rather than
|
| H A D | ChangeLog | 1139 * hex.c (hex_value): Group 'unsigned int' together to get correct 1949 (hex_value): Update documentation for new return type. hex_value
|
| /freebsd-12.1/contrib/binutils/gas/config/ |
| H A D | tc-score.c | 5938 val |= hex_value (*input_line_pointer++); in get_number()
|
| H A D | tc-mips.c | 14745 val |= hex_value (*input_line_pointer++); in get_number()
|