Home
last modified time | relevance | path

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

12

/netbsd/src/external/gpl3/gdb/dist/opcodes/
Dspu-dis.c97 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/
Dspu-dis.c97 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/
Dttyin.c215 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/
Dtekhex.c91 #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()
Dverilog.c73 #define NIBBLE(x) hex_value (x)
Dihex.c134 #define NIBBLE(x) (hex_value (x))
Dsrec.c115 #define NIBBLE(x) hex_value(x)
/netbsd/src/external/gpl3/gdb/dist/bfd/
Dtekhex.c91 #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()
Dverilog.c73 #define NIBBLE(x) hex_value (x)
Dihex.c134 #define NIBBLE(x) (hex_value (x))
Dsrec.c115 #define NIBBLE(x) hex_value(x)
/netbsd/src/external/gpl3/binutils/dist/include/
Dlibiberty.h393 #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/
Dlibiberty.h393 #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/
Dlibiberty.h393 #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/
Dexpr.c387 (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()
Dread.c4879 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/
Dcharset.cc1119 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()
Dexpr.cc580 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/
Dtc-iq2000.c864 val |= hex_value (*input_line_pointer++); in get_number()
/netbsd/src/external/gpl3/binutils/dist/gold/
Doptions.cc552 addr += hex_value(*eq); in parse_section_start()
/netbsd/src/external/gpl3/gcc/dist/gcc/
Dreal.cc2002 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/
Dfunctions.texi504 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/
Dfunctions.texi504 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/
Dfunctions.texi504 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/
Dstormy16.cc2362 op[o] = args[(int) hex_value (ao)]; in xstormy16_expand_builtin()

12