/toolchain/binutils/binutils-2.25/gas/testsuite/gas/ia64/ |
D | pound.l | 8 [[:space:]]*[[:digit:]]+[[:space:]]+\.explicit 9 [[:space:]]*[[:digit:]]+[[:space:]]+ 10 [[:space:]]*[[:digit:]]+[[:space:]]+\.global esym# 11 [[:space:]]*[[:digit:]]+[[:space:]]+ 12 [[:space:]]*[[:digit:]]+[[:space:]]+\.section \.extra#, "a", @progbits 13 [[:space:]]*[[:digit:]]+[[:space:]]+ 14 [[:space:]]*[[:digit:]]+[[:space:]]+\.text 15 [[:space:]]*[[:digit:]]+[[:space:]]+ 16 [[:space:]]*[[:digit:]]+[[:space:]]+ break 0 17 [[:space:]]*[[:digit:]]+[[:space:]]+ [all …]
|
D | reloc-bad.l | 2 .*:[[:digit:]]+: (Error|Warning): .* GPREL14 .* 3 .*:[[:digit:]]+: (Error|Warning): .* LTOFF14 .* 4 .*:[[:digit:]]+: (Error|Warning): .* LTOFF32[LM]SB .* 5 .*:[[:digit:]]+: (Error|Warning): .* LTOFF64[LM]SB .* 6 .*:[[:digit:]]+: (Error|Warning): .* PLTOFF14 .* 7 .*:[[:digit:]]+: (Error|Warning): .* PLTOFF32[LM]SB .* 8 .*:[[:digit:]]+: (Error|Warning): .* FPTR14 .* 9 .*:[[:digit:]]+: (Error|Warning): .* FPTR22 .* 10 .*:[[:digit:]]+: (Error|Warning): .* PCREL14 .* 11 .*:[[:digit:]]+: (Error|Warning): .* LTOFF_FPTR14 .* [all …]
|
D | unwind-ok.d | 7 [[:space:]]*v[[:digit:]]+, flags=0x3 \( ?ehandler uhandler\), len=[[:digit:]]+ bytes 41 [[:space:]]*v[[:digit:]]+, flags=0x0( \(\))?, len=[[:digit:]]+ bytes 125 [[:space:]]*v[[:digit:]]+, flags=0x0( \(\))?, len=[[:digit:]]+ bytes 136 [[:space:]]*v[[:digit:]]+, flags=0x0( \(\))?, len=[[:digit:]]+ bytes 142 [[:space:]]*v[[:digit:]]+, flags=0x0( \(\))?, len=[[:digit:]]+ bytes 169 [[:space:]]*v[[:digit:]]+, flags=0x0( \(\))?, len=[[:digit:]]+ bytes 196 [[:space:]]*v[[:digit:]]+, flags=0x0( \(\))?, len=[[:digit:]]+ bytes 223 [[:space:]]*v[[:digit:]]+, flags=0x0( \(\))?, len=[[:digit:]]+ bytes
|
D | rotX.l | 2 .*.s:[[:digit:]]+: Error: [Nn]umber of elements must be positive 3 .*.s:[[:digit:]]+: Error: [Nn]umber of elements must be positive 4 .*.s:[[:digit:]]+: Error: [Bb]ad or irreducible absolute expression
|
D | index.l | 23 .*.s:39: Error: [Ii]ndex out of range 0\.\.[[:digit:]]+
|
/toolchain/binutils/binutils-2.25/libiberty/ |
D | sort.c | 85 digit_t *digit; in sort_pointers() local 111 for (digit = bias; in sort_pointers() 112 digit < top; in sort_pointers() 113 digit += sizeof (void *) / sizeof (digit_t)) in sort_pointers() 114 ++count[*digit]; in sort_pointers()
|
D | d-demangle.c | 742 int digit = val % 16; in dlang_parse_integer() local 744 if (digit < 10) in dlang_parse_integer() 745 value[--pos] = (char)(digit + '0'); in dlang_parse_integer() 747 value[--pos] = (char)((digit - 10) + 'a'); in dlang_parse_integer()
|
D | functions.texi | 506 as a hexadecimal digit. The result is undefined if you pass an 507 invalid hex digit. Note that the value you pass will be cast to 1762 we find a digit in each string - then we enter a special comparison 1784 strverscmp ("no digit", "no digit")
|
D | ChangeLog | 4202 * cplus-dem.c (demangle_integral_value): Accept multi-digit 4205 because multi-digit numbers are never followed by a digit. 4207 cases with multi-digit template parameters: g++ 2.95.x does 4711 `_' not followed by a digit is invalid. 8234 * strtoul.c (strtoul): use "(digit = *s) != '\0'" not just 8235 "digit = *s" as condition in while loop. 8460 start with digit, and don't consume any input.
|
/toolchain/binutils/binutils-2.25/bfd/ |
D | bfd.c | 1324 unsigned int digit; in bfd_scan_vma() local 1326 digit = *string; in bfd_scan_vma() 1327 if (ISDIGIT (digit)) in bfd_scan_vma() 1328 digit = digit - '0'; in bfd_scan_vma() 1329 else if (ISALPHA (digit)) in bfd_scan_vma() 1330 digit = TOUPPER (digit) - 'A' + 10; in bfd_scan_vma() 1333 if (digit >= (unsigned int) base) in bfd_scan_vma() 1335 if (value > cutoff || (value == cutoff && digit > cutlim)) in bfd_scan_vma() 1337 value = value * base + digit; in bfd_scan_vma()
|
/toolchain/binutils/binutils-2.25/ld/ |
D | ldexp.c | 1409 unsigned int digit; in exp_get_fill() local 1411 digit = *s++ - '0'; in exp_get_fill() 1412 if (digit > 9) in exp_get_fill() 1413 digit = (digit - 'A' + '0' + 10) & 0xf; in exp_get_fill() 1415 val += digit; in exp_get_fill()
|
D | ld.texinfo | 2200 @code{:} characters between digit pairs are ignored). If @var{style} 4751 of hex digit starting with @samp{0x} and without a trailing @samp{k} or @samp{M}, then
|
/toolchain/binutils/binutils-2.25/gas/ |
D | expr.c | 256 short int digit; /* Value of next digit in current radix. */ in integer_constant() local 356 (digit = hex_value (c)) < maxdig; in integer_constant() 359 number = number * radix + digit; in integer_constant() 383 (digit = hex_value (c)) < maxdig; in integer_constant() 386 number = number * radix + digit; in integer_constant()
|
D | ChangeLog-0203 | 1440 for 2-digit sizes.
|
/toolchain/binutils/binutils-2.25/gas/config/ |
D | bfin-lex.l | 443 float digit = (c - '0') / pos; variable 444 fval = fval + digit;
|
D | tc-tic54x.c | 4534 char digit[11]; in subsym_substitute() local 4537 value = strcpy (xmalloc (strlen (name) + sizeof (digit) + 1), in subsym_substitute() 4541 sprintf (digit, ".%d", local_label_id++); in subsym_substitute() 4542 strcat (value, digit); in subsym_substitute()
|
/toolchain/binutils/binutils-2.25/gas/doc/ |
D | c-vax.texi | 99 adding an underscore followed by a 6 digit hex value, representing a 24 100 digit binary value. The one digits in the binary value represent which
|
D | c-h8300.texi | 63 general-purpose registers. @var{n} is a digit from @samp{0} to
|
D | c-z8k.texi | 191 @var{xx} represents a two-digit hexadecimal number) to represent the
|
D | as.texinfo | 2696 No symbol may begin with a digit. Case is significant. 2856 @c @item \x @var{digit} @var{digit} @var{digit} 2861 @item \ @var{digit} @var{digit} @var{digit} 2972 A decimal integer starts with a non-zero digit followed by zero or 3011 The digit @samp{0}. 6155 single-digit power-of-two section alignment (GNU extension)
|
/toolchain/binutils/binutils-2.25/cpu/ |
D | ip2k.cpu | 274 (dsh h-dcbit "digit-carry bit" () (register BI)) 299 (dnop dcbit "digit carry bit" () h-dcbit f-nil) 316 ; "DC" = "digit carry", ie carry between nibbles
|
/toolchain/binutils/binutils-2.25/gas/testsuite/ |
D | ChangeLog-2004 | 18 * gas/elf/section5.e, gas/elf/section5.l: Replace [:digit:],
|
D | ChangeLog-2005 | 1674 * gas/elf/elf.exp (section5): Use 0-9 instead of [:digit:].
|
/toolchain/binutils/binutils-2.25/gprof/ |
D | ChangeLog-9203 | 1723 with a digit, and as FUNCNAME otherwise.
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ |
D | ChangeLog-2012 | 2009 * ld-gc/pr13683.d: Allow non-zero top address digit.
|