Home
last modified time | relevance | path

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

/toolchain/binutils/binutils-2.27/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 …]
/toolchain/binutils/binutils-2.27/bfd/
Dtekhex.c91 #define NIBBLE(x) hex_value(x)
279 len = hex_value (*src++); in getvalue()
286 value = value << 4 | hex_value (*src++); in getvalue()
304 len = hex_value (*src++); in getsym()
Dverilog.c65 #define NIBBLE(x) hex_value(x)
Dihex.c134 #define NIBBLE(x) (hex_value (x))
Dsrec.c115 #define NIBBLE(x) hex_value(x)
DChangeLog-94954125 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.
/toolchain/binutils/binutils-2.27/include/
Dlibiberty.h384 #define hex_p(c) (hex_value (c) != _hex_bad)
387 #define hex_value(c) ((unsigned int) _hex_value[(unsigned char) (c)]) macro
DChangeLog-9103179 * libiberty.h (hex_value): Make the value an unsigned int, to
1885 hex_p, hex_value): New macros and declarations, for hex.c.
/toolchain/binutils/binutils-2.27/gas/
Dexpr.c360 (digit = hex_value (c)) < maxdig; in integer_constant()
387 (digit = hex_value (c)) < maxdig; in integer_constant()
463 for (; (carry = hex_value (c)) < maxdig; c = *input_line_pointer++) in integer_constant()
Dread.c4875 d = hex_value (*input_line_pointer) << 4; in hex_float()
4881 d += hex_value (*input_line_pointer); in hex_float()
DChangeLog-92953917 hex_value array references with hex_* macros.
11985 parts of the program. Add "const" modifier to hex_value.
11988 * expr.c: Add "const" modifier to hex_value.
/toolchain/binutils/binutils-2.27/gas/config/
Dtc-iq2000.c871 val |= hex_value (*input_line_pointer++); in get_number()
Dtc-sparc.c2071 num |= hex_value (*s); in sparc_ip()
Dtc-score7.c5502 val |= hex_value (*input_line_pointer++); in s7_get_number()
Dtc-score.c5649 val |= hex_value (*input_line_pointer++); in s3_get_number()
Dtc-mips.c18403 val |= hex_value (*input_line_pointer++); in get_number()
/toolchain/binutils/binutils-2.27/gold/
Doptions.cc523 addr += hex_value(*eq); in parse_section_start()
Dlayout.cc3157 char c = (hex_value(p[0]) << 4) | hex_value(p[1]); in create_build_id()
/toolchain/binutils/binutils-2.27/libiberty/
Dfunctions.texi488 call to @code{hex_p} or @code{hex_value}. If you fail to call it, a
503 @deftypefn Extension {unsigned int} hex_value (int @var{c})
510 The @code{hex_value} macro returns @code{unsigned int}, rather than
DChangeLog3130 * hex.c (hex_value): Group 'unsigned int' together to get correct
3940 (hex_value): Update documentation for new return type. hex_value