| /netbsd/src/external/gpl3/gdb/dist/opcodes/ |
| D | spu-dis.c | 97 int hex_value; in print_insn_spu() local 138 hex_value = 0; in print_insn_spu() 191 hex_value = DECODE_INSN_I7 (insn); in print_insn_spu() 192 (*info->fprintf_func) (info->stream, "%d", hex_value); in print_insn_spu() 204 hex_value = DECODE_INSN_I10 (insn); in print_insn_spu() 205 (*info->fprintf_func) (info->stream, "%d", hex_value); in print_insn_spu() 208 hex_value = DECODE_INSN_I10 (insn) * 16; in print_insn_spu() 209 (*info->fprintf_func) (info->stream, "%d", hex_value); in print_insn_spu() 212 hex_value = DECODE_INSN_I16 (insn); in print_insn_spu() 213 (*info->fprintf_func) (info->stream, "%d", hex_value); in print_insn_spu() [all …]
|
| /netbsd/src/external/gpl3/binutils/dist/opcodes/ |
| D | spu-dis.c | 97 int hex_value; in print_insn_spu() local 138 hex_value = 0; in print_insn_spu() 191 hex_value = DECODE_INSN_I7 (insn); in print_insn_spu() 192 (*info->fprintf_func) (info->stream, "%d", hex_value); in print_insn_spu() 204 hex_value = DECODE_INSN_I10 (insn); in print_insn_spu() 205 (*info->fprintf_func) (info->stream, "%d", hex_value); in print_insn_spu() 208 hex_value = DECODE_INSN_I10 (insn) * 16; in print_insn_spu() 209 (*info->fprintf_func) (info->stream, "%d", hex_value); in print_insn_spu() 212 hex_value = DECODE_INSN_I16 (insn); in print_insn_spu() 213 (*info->fprintf_func) (info->stream, "%d", hex_value); in print_insn_spu() [all …]
|
| /netbsd/src/external/bsd/less/dist/ |
| D | ttyin.c | 215 static int hex_value = 0; in getchr() 233 hex_value = (hex_value << 4) | v; in getchr() 239 c = hex_value; in getchr()
|
| /netbsd/src/external/gpl3/binutils/dist/bfd/ |
| D | tekhex.c | 91 #define NIBBLE(x) hex_value(x) 282 len = hex_value (*src++); in getvalue() 289 value = value << 4 | hex_value (*src++); in getvalue() 307 len = hex_value (*src++); in getsym()
|
| D | verilog.c | 73 #define NIBBLE(x) hex_value (x)
|
| D | ihex.c | 134 #define NIBBLE(x) (hex_value (x))
|
| D | srec.c | 115 #define NIBBLE(x) hex_value(x)
|
| /netbsd/src/external/gpl3/gdb/dist/bfd/ |
| D | tekhex.c | 91 #define NIBBLE(x) hex_value(x) 282 len = hex_value (*src++); in getvalue() 289 value = value << 4 | hex_value (*src++); in getvalue() 307 len = hex_value (*src++); in getsym()
|
| D | verilog.c | 73 #define NIBBLE(x) hex_value (x)
|
| D | ihex.c | 134 #define NIBBLE(x) (hex_value (x))
|
| D | srec.c | 115 #define NIBBLE(x) hex_value(x)
|
| /netbsd/src/external/gpl3/binutils/dist/include/ |
| D | libiberty.h | 393 #define hex_p(c) (hex_value (c) != _hex_bad) 396 #define hex_value(c) ((unsigned int) _hex_value[(unsigned char) (c)]) macro
|
| /netbsd/src/external/gpl3/gcc/dist/include/ |
| D | libiberty.h | 393 #define hex_p(c) (hex_value (c) != _hex_bad) 396 #define hex_value(c) ((unsigned int) _hex_value[(unsigned char) (c)]) macro
|
| /netbsd/src/external/gpl3/gdb/dist/include/ |
| D | libiberty.h | 393 #define hex_p(c) (hex_value (c) != _hex_bad) 396 #define hex_value(c) ((unsigned int) _hex_value[(unsigned char) (c)]) macro
|
| /netbsd/src/external/gpl3/binutils/dist/gas/ |
| D | expr.c | 387 (digit = hex_value (c)) < maxdig; in integer_constant() 414 (digit = hex_value (c)) < maxdig; in integer_constant() 490 for (; (carry = hex_value (c)) < maxdig; c = *input_line_pointer++) in integer_constant()
|
| D | read.c | 4879 d = hex_value (*input_line_pointer) << 4; in hex_float() 4885 d += hex_value (*input_line_pointer); in hex_float()
|
| /netbsd/src/external/gpl3/gcc/dist/libcpp/ |
| D | charset.cc | 1119 result = (result << 4) + hex_value (c); in _cpp_valid_ucn() 1419 n = (n << 4) + hex_value (c); in convert_hex() 2126 value = (value << 4) + hex_value (id[idp]); in _cpp_interpret_identifier()
|
| D | expr.cc | 580 c = hex_value (c); in cpp_classify_number() 921 c = hex_value (c); in cpp_interpret_integer()
|
| /netbsd/src/external/gpl3/binutils/dist/gas/config/ |
| D | tc-iq2000.c | 864 val |= hex_value (*input_line_pointer++); in get_number()
|
| /netbsd/src/external/gpl3/binutils/dist/gold/ |
| D | options.cc | 552 addr += hex_value(*eq); in parse_section_start()
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/ |
| D | real.cc | 2002 d = hex_value (*str); in real_from_string() 2028 d = hex_value (*str); in real_from_string() 2538 while ((d = hex_value (*str)) < base) in real_nan()
|
| /netbsd/src/external/gpl3/gcc/dist/libiberty/ |
| D | functions.texi | 504 call to @code{hex_p} or @code{hex_value}. If you fail to call it, a 519 @deftypefn Extension {unsigned int} hex_value (int @var{c}) 526 The @code{hex_value} macro returns @code{unsigned int}, rather than
|
| /netbsd/src/external/gpl3/gdb/dist/libiberty/ |
| D | functions.texi | 504 call to @code{hex_p} or @code{hex_value}. If you fail to call it, a 519 @deftypefn Extension {unsigned int} hex_value (int @var{c}) 526 The @code{hex_value} macro returns @code{unsigned int}, rather than
|
| /netbsd/src/external/gpl3/binutils/dist/libiberty/ |
| D | functions.texi | 504 call to @code{hex_p} or @code{hex_value}. If you fail to call it, a 519 @deftypefn Extension {unsigned int} hex_value (int @var{c}) 526 The @code{hex_value} macro returns @code{unsigned int}, rather than
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/stormy16/ |
| D | stormy16.cc | 2362 op[o] = args[(int) hex_value (ao)]; in xstormy16_expand_builtin()
|