Home
last modified time | relevance | path

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

12

/freebsd-12.1/contrib/binutils/opcodes/
H A Dspu-dis.c96 int hex_value; in print_insn_spu() local
137 hex_value = 0; in print_insn_spu()
190 hex_value = DECODE_INSN_I7 (insn); in print_insn_spu()
203 hex_value = DECODE_INSN_I10 (insn); in print_insn_spu()
207 hex_value = DECODE_INSN_I10 (insn) * 16; in print_insn_spu()
211 hex_value = DECODE_INSN_I16 (insn); in print_insn_spu()
215 hex_value = DECODE_INSN_U16 (insn); in print_insn_spu()
224 hex_value = memaddr + value; in print_insn_spu()
239 hex_value = value; in print_insn_spu()
246 hex_value = DECODE_INSN_U14 (insn); in print_insn_spu()
[all …]
/freebsd-12.1/contrib/less/
H A Dttyin.c143 static int hex_value = 0; in getchr()
161 hex_value = (hex_value << 4) | v; in getchr()
167 c = hex_value; in getchr()
/freebsd-12.1/contrib/gdb/include/
H A Dlibiberty.h259 #define hex_p(c) (hex_value (c) != _hex_bad)
262 #define hex_value(c) ((unsigned int) _hex_value[(unsigned char) (c)]) macro
/freebsd-12.1/contrib/binutils/include/
H A Dlibiberty.h351 #define hex_p(c) (hex_value (c) != _hex_bad)
354 #define hex_value(c) ((unsigned int) _hex_value[(unsigned char) (c)]) macro
/freebsd-12.1/contrib/gcclibs/include/
H A Dlibiberty.h344 #define hex_p(c) (hex_value (c) != _hex_bad)
347 #define hex_value(c) ((unsigned int) _hex_value[(unsigned char) (c)]) macro
H A 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.
/freebsd-12.1/contrib/binutils/bfd/
H A Dtekhex.c90 #define NIBBLE(x) hex_value(x)
277 len = hex_value (*src++); in getvalue()
284 value = value << 4 | hex_value (*src++); in getvalue()
302 len = hex_value (*src++); in getsym()
H A Dihex.c133 #define NIBBLE(x) (hex_value (x))
H A Dsrec.c115 #define NIBBLE(x) hex_value(x)
H A 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.
/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DArgs.cpp567 unsigned long hex_value = strtoul(hex_str, nullptr, 16); in EncodeEscapeSequences() local
568 if (hex_value <= UINT8_MAX) in EncodeEscapeSequences()
569 dst.append(1, (char)hex_value); in EncodeEscapeSequences()
/freebsd-12.1/contrib/elftoolchain/elfcopy/
H A Dascii.c43 static int hex_value(int x);
1019 b = (hex_value(line[*len]) << 4) | hex_value(line[*len + 1]); in read_num()
1052 hex_value(int x) in hex_value() function
/freebsd-12.1/contrib/gcclibs/libcpp/
H A Dcharset.c972 result = (result << 4) + hex_value (c); in _cpp_valid_ucn()
1142 n = (n << 4) + hex_value (c); in convert_hex()
1552 value = (value << 4) + hex_value (id[idp]); in _cpp_interpret_identifier()
H A Dexpr.c208 c = hex_value (c); in cpp_classify_number()
422 c = hex_value (c); in cpp_interpret_integer()
/freebsd-12.1/contrib/binutils/gas/
H A Dexpr.c349 (digit = hex_value (c)) < maxdig; in integer_constant()
376 (digit = hex_value (c)) < maxdig; in integer_constant()
452 for (; (carry = hex_value (c)) < maxdig; c = *input_line_pointer++) in integer_constant()
H A Dread.c4521 d = hex_value (*input_line_pointer) << 4; in hex_float()
4527 d += hex_value (*input_line_pointer); in hex_float()
/freebsd-12.1/contrib/llvm/lib/Support/
H A DAPFloat.cpp2289 integerPart hex_value; in convertFromHexadecimalString() local
2297 hex_value = hexDigitValue(*p); in convertFromHexadecimalString()
2298 if (hex_value == -1U) in convertFromHexadecimalString()
2306 hex_value <<= bitPos % integerPartWidth; in convertFromHexadecimalString()
2307 significand[bitPos / integerPartWidth] |= hex_value; in convertFromHexadecimalString()
2309 lost_fraction = trailingHexadecimalFraction(p, end, hex_value); in convertFromHexadecimalString()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DFormatEntity.cpp2122 unsigned long hex_value = strtoul(hex_str, nullptr, 16); in ParseInternal() local
2123 if (hex_value <= UINT8_MAX) { in ParseInternal()
2124 parent_entry.AppendChar((char)hex_value); in ParseInternal()
/freebsd-12.1/contrib/gcc/
H A Dreal.c1823 d = hex_value (*str); in real_from_string()
1849 d = hex_value (*str); in real_from_string()
2215 while ((d = hex_value (*str)) < base) in real_nan()
/freebsd-12.1/contrib/gcclibs/libiberty/
H A Dfunctions.texi405 call to @code{hex_p} or @code{hex_value}. If you fail to call it, a
420 @deftypefn Extension {unsigned int} hex_value (int @var{c})
427 The @code{hex_value} macro returns @code{unsigned int}, rather than
H A DChangeLog941 * hex.c (hex_value): Group 'unsigned int' together to get correct
1751 (hex_value): Update documentation for new return type. hex_value
/freebsd-12.1/contrib/binutils/libiberty/
H A Dfunctions.texi421 call to @code{hex_p} or @code{hex_value}. If you fail to call it, a
436 @deftypefn Extension {unsigned int} hex_value (int @var{c})
443 The @code{hex_value} macro returns @code{unsigned int}, rather than
H A DChangeLog1139 * hex.c (hex_value): Group 'unsigned int' together to get correct
1949 (hex_value): Update documentation for new return type. hex_value
/freebsd-12.1/contrib/binutils/gas/config/
H A Dtc-score.c5938 val |= hex_value (*input_line_pointer++); in get_number()
H A Dtc-mips.c14745 val |= hex_value (*input_line_pointer++); in get_number()

12