Home
last modified time | relevance | path

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

123

/netbsd-src/external/gpl3/binutils.old/dist/opcodes/
H A 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/
H A 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/
H A 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.old/dist/bfd/
H A 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()
H A Dverilog.c69 #define NIBBLE(x) hex_value (x)
H A Dihex.c134 #define NIBBLE(x) (hex_value (x))
/netbsd-src/external/gpl3/binutils/dist/bfd/
H A 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()
H A Dverilog.c73 #define NIBBLE(x) hex_value (x)
H A Dihex.c134 #define NIBBLE(x) (hex_value (x))
/netbsd-src/external/gpl3/gcc.old/dist/include/
H A 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/
H A 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/include/
H A 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.old/dist/include/
H A 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/gprofng/src/
H A DDisasm.cc346 unsigned int hex_value = buffer[i] & 0xff; in get_disasm() local
347 snprintf (bytes + 3 * i, sizeof (bytes) - 3 * i, "%02x ", hex_value); in get_disasm()
/netbsd-src/external/gpl3/binutils.old/dist/gprofng/src/
H A DDisasm.cc331 unsigned int hex_value = buffer[i] & 0xff; in get_disasm() local
332 snprintf (bytes + 3 * i, sizeof (bytes) - 3 * i, "%02x ", hex_value); in get_disasm()
/netbsd-src/external/apache2/llvm/dist/llvm/docs/CommandGuide/
H A Dllvm-exegesis.rst96 directive `LLVM-EXEGESIS-DEFREG <reg name> <hex_value>`, where `<hex_value>`
97 is a bit pattern used to fill `<reg_name>`. If `<hex_value>` is smaller than
/netbsd-src/external/gpl3/binutils.old/dist/gas/
H A Dexpr.c391 (digit = hex_value (c)) < maxdig; in integer_constant()
418 (digit = hex_value (c)) < maxdig; in integer_constant()
494 for (; (carry = hex_value (c)) < maxdig; c = *input_line_pointer++) in integer_constant()
/netbsd-src/external/gpl3/gcc.old/dist/libcpp/
H A Dcharset.c1086 result = (result << 4) + hex_value (c); in _cpp_valid_ucn()
1386 n = (n << 4) + hex_value (c); in convert_hex()
2094 value = (value << 4) + hex_value (id[idp]); in _cpp_interpret_identifier()
H A Dexpr.c570 c = hex_value (c); in cpp_classify_number()
898 c = hex_value (c); in cpp_interpret_integer()
/netbsd-src/external/gpl3/gcc/dist/libcpp/
H A 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()
H A 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/
H A 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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DAPFloat.cpp2538 integerPart hex_value; in convertFromHexadecimalString() local
2547 hex_value = hexDigitValue(*p); in convertFromHexadecimalString()
2548 if (hex_value == -1U) in convertFromHexadecimalString()
2556 hex_value <<= bitPos % integerPartWidth; in convertFromHexadecimalString()
2557 significand[bitPos / integerPartWidth] |= hex_value; in convertFromHexadecimalString()
2559 auto FractOrErr = trailingHexadecimalFraction(p, end, hex_value); in convertFromHexadecimalString()
/netbsd-src/external/gpl3/binutils.old/dist/gas/config/
H A Dtc-iq2000.c875 val |= hex_value (*input_line_pointer++); in get_number()
/netbsd-src/external/gpl3/binutils/dist/gas/config/
H A Dtc-iq2000.c864 val |= hex_value (*input_line_pointer++); in get_number()

123