Searched refs:hex_value (Results 1 - 25 of 32) sorted by relevance

12

/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/opcodes/
H A Dspu-dis.c97 int hex_value; local
138 hex_value = 0;
191 hex_value = DECODE_INSN_I7 (insn);
192 (*info->fprintf_func) (info->stream, "%d", hex_value);
204 hex_value = DECODE_INSN_I10 (insn);
205 (*info->fprintf_func) (info->stream, "%d", hex_value);
208 hex_value = DECODE_INSN_I10 (insn) * 16;
209 (*info->fprintf_func) (info->stream, "%d", hex_value);
212 hex_value = DECODE_INSN_I16 (insn);
213 (*info->fprintf_func) (info->stream, "%d", hex_value);
258 (*info->fprintf_func) (info->stream, "\\t# %x", hex_value); local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/opcodes/
H A Dspu-dis.c97 int hex_value; local
138 hex_value = 0;
191 hex_value = DECODE_INSN_I7 (insn);
192 (*info->fprintf_func) (info->stream, "%d", hex_value);
204 hex_value = DECODE_INSN_I10 (insn);
205 (*info->fprintf_func) (info->stream, "%d", hex_value);
208 hex_value = DECODE_INSN_I10 (insn) * 16;
209 (*info->fprintf_func) (info->stream, "%d", hex_value);
212 hex_value = DECODE_INSN_I16 (insn);
213 (*info->fprintf_func) (info->stream, "%d", hex_value);
258 (*info->fprintf_func) (info->stream, "\\t# %x", hex_value); local
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/less/dist/
H A Dttyin.c142 int hex_value = 0;
160 hex_value = (hex_value << 4) | v;
166 c = hex_value;
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/include/
H A Dlibiberty.h373 #define hex_p(c) (hex_value (c) != _hex_bad)
376 #define hex_value(c) ((unsigned int) _hex_value[(unsigned char) (c)]) macro
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/include/
H A Dlibiberty.h362 #define hex_p(c) (hex_value (c) != _hex_bad)
365 #define hex_value(c) ((unsigned int) _hex_value[(unsigned char) (c)]) macro
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/include/
H A Dlibiberty.h340 #define hex_p(c) (hex_value (c) != _hex_bad)
343 #define hex_value(c) ((unsigned int) _hex_value[(unsigned char) (c)]) macro
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/include/
H A Dlibiberty.h373 #define hex_p(c) (hex_value (c) != _hex_bad)
376 #define hex_value(c) ((unsigned int) _hex_value[(unsigned char) (c)]) macro
/netbsd-6-1-5-RELEASE/external/bsd/wpa/dist/src/wps/
H A Dhttpread.c141 static int hex_value(int c) function
304 *uri++ = (hex_value(rawuri[1]) << 4) |
305 hex_value(rawuri[2]);
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/bfd/
H A Dtekhex.c92 #define NIBBLE(x) hex_value(x)
279 len = hex_value (*src++);
286 value = value << 4 | hex_value (*src++);
304 len = hex_value (*src++);
H A Dverilog.c66 #define NIBBLE(x) hex_value(x)
H A Dihex.c135 #define NIBBLE(x) (hex_value (x))
H A Dsrec.c117 #define NIBBLE(x) hex_value(x)
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/bfd/
H A Dtekhex.c92 #define NIBBLE(x) hex_value(x)
279 len = hex_value (*src++);
286 value = value << 4 | hex_value (*src++);
304 len = hex_value (*src++);
H A Dverilog.c66 #define NIBBLE(x) hex_value(x)
H A Dihex.c135 #define NIBBLE(x) (hex_value (x))
H A Dsrec.c117 #define NIBBLE(x) hex_value(x)
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/
H A Dexpr.c361 (digit = hex_value (c)) < maxdig;
388 (digit = hex_value (c)) < maxdig;
464 for (; (carry = hex_value (c)) < maxdig; c = *input_line_pointer++)
H A Dread.c4683 d = hex_value (*input_line_pointer) << 4;
4689 d += hex_value (*input_line_pointer);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libcpp/
H A Dcharset.c1018 result = (result << 4) + hex_value (c);
1189 n = (n << 4) + hex_value (c);
1659 value = (value << 4) + hex_value (id[idp]);
H A Dexpr.c273 c = hex_value (c);
521 c = hex_value (c);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libcpp/
H A Dcharset.c973 result = (result << 4) + hex_value (c);
1143 n = (n << 4) + hex_value (c);
1556 value = (value << 4) + hex_value (id[idp]);
H A Dexpr.c183 c = hex_value (c);
359 c = hex_value (c);
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/config/
H A Dtc-iq2000.c879 val |= hex_value (*input_line_pointer++);
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gold/
H A Doptions.cc465 addr += hex_value(*eq);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/
H A Dreal.c1932 d = hex_value (*str);
1958 d = hex_value (*str);
2446 while ((d = hex_value (*str)) < base)

Completed in 218 milliseconds

12