Searched refs:hex_value (Results 1 – 20 of 20) sorted by relevance
/toolchain/binutils/binutils-2.27/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 …]
|
/toolchain/binutils/binutils-2.27/bfd/ |
D | tekhex.c | 91 #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()
|
D | verilog.c | 65 #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)
|
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.
|
/toolchain/binutils/binutils-2.27/include/ |
D | libiberty.h | 384 #define hex_p(c) (hex_value (c) != _hex_bad) 387 #define hex_value(c) ((unsigned int) _hex_value[(unsigned char) (c)]) macro
|
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.
|
/toolchain/binutils/binutils-2.27/gas/ |
D | expr.c | 360 (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()
|
D | read.c | 4875 d = hex_value (*input_line_pointer) << 4; in hex_float() 4881 d += hex_value (*input_line_pointer); in hex_float()
|
D | ChangeLog-9295 | 3917 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/ |
D | tc-iq2000.c | 871 val |= hex_value (*input_line_pointer++); in get_number()
|
D | tc-sparc.c | 2071 num |= hex_value (*s); in sparc_ip()
|
D | tc-score7.c | 5502 val |= hex_value (*input_line_pointer++); in s7_get_number()
|
D | tc-score.c | 5649 val |= hex_value (*input_line_pointer++); in s3_get_number()
|
D | tc-mips.c | 18403 val |= hex_value (*input_line_pointer++); in get_number()
|
/toolchain/binutils/binutils-2.27/gold/ |
D | options.cc | 523 addr += hex_value(*eq); in parse_section_start()
|
D | layout.cc | 3157 char c = (hex_value(p[0]) << 4) | hex_value(p[1]); in create_build_id()
|
/toolchain/binutils/binutils-2.27/libiberty/ |
D | functions.texi | 488 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
|
D | ChangeLog | 3130 * hex.c (hex_value): Group 'unsigned int' together to get correct 3940 (hex_value): Update documentation for new return type. hex_value
|