Searched refs:ISDIGIT (Results 1 - 25 of 207) sorted by relevance

123456789

/openbsd-current/gnu/lib/libiberty/src/
H A Dstrverscmp.c130 state = S_N | ((c1 == '0') + (ISDIGIT (c1) != 0));
137 state |= (c1 == '0') + (ISDIGIT (c1) != 0);
140 state = result_type[state << 2 | (((c2 == '0') + (ISDIGIT (c2) != 0)))];
148 while (ISDIGIT (*p1++))
149 if (!ISDIGIT (*p2++))
152 return ISDIGIT (*p2) ? -1 : diff;
H A Dstrtod.c105 if (ISDIGIT (*p) || *p == '.')
108 while (ISDIGIT (*p) || (!got_dot && *p == '.'))
122 if (ISDIGIT (p[i]))
124 while (ISDIGIT (p[i]))
H A Dstrtol.c139 if (ISDIGIT(c))
H A Dstrtoul.c91 if (ISDIGIT(c))
H A D_doprnt.c101 while (ISDIGIT(*ptr)) /* Handle explicit numeric value. */
110 while (ISDIGIT(*ptr)) /* Handle explicit numeric value. */
H A Dcplus-dem.c496 if (! ISDIGIT ((unsigned char)**type))
499 while (ISDIGIT ((unsigned char)**type))
510 while (ISDIGIT ((unsigned char) **type))
538 if (!ISDIGIT ((unsigned char)**mangled))
947 if (ISDIGIT ((unsigned char) mangled[len0 - 1])) {
948 for (i = len0 - 2; i >= 0 && ISDIGIT ((unsigned char) mangled[i]); i -= 1)
1457 while (**mangled && ISDIGIT ((unsigned char)**mangled))
1793 while (ISDIGIT ((unsigned char)**mangled))
1802 while (ISDIGIT ((unsigned char)**mangled))
1812 while (ISDIGIT ((unsigne
[all...]
/openbsd-current/gnu/usr.bin/binutils/gas/
H A Datof-generic.c170 if (ISDIGIT (c))
199 for (p++; (c = *p) && ISDIGIT (c); p++)
220 if (ISDIGIT (c))
274 if (ISDIGIT (c))
399 if (ISDIGIT (c))
/openbsd-current/gnu/usr.bin/binutils-2.17/gas/
H A Datof-generic.c170 if (ISDIGIT (c))
199 for (p++; (c = *p) && ISDIGIT (c); p++)
220 if (ISDIGIT (c))
274 if (ISDIGIT (c))
385 if (ISDIGIT (c))
/openbsd-current/usr.bin/patch/
H A Dbackupfile.c30 #define ISDIGIT(c) (isascii (c) && isdigit (c)) macro
147 ISDIGIT((unsigned char)backup[base_length])) {
148 for (p = &backup[base_length]; ISDIGIT((unsigned char)*p); ++p)
/openbsd-current/gnu/gcc/gcc/config/i386/
H A Dnetware.c183 if (ISDIGIT (p[1]))
187 gcc_assert (ISDIGIT (*name));
/openbsd-current/gnu/usr.bin/cvs/diff/
H A Difdef.c145 if (ISDIGIT (f0))
148 while (ISDIGIT ((unsigned char) *++f))
423 while (ISDIGIT (c))
426 while (ISDIGIT (c = *spec++))
H A Dsystem.h209 #ifndef ISDIGIT
210 #define ISDIGIT(c) ((unsigned) (c) - '0' <= 9) macro
/openbsd-current/usr.bin/mg/
H A Dchrdef.h34 #define ISDIGIT(c) ((cinfo[CHARMASK(c)]&_MG_D)!=0) macro
/openbsd-current/usr.bin/make/
H A Ddefines.h101 #define ISDIGIT(c) (isdigit((unsigned char)(c))) macro
/openbsd-current/gnu/gcc/gcc/
H A Dc-cppbuiltin.c342 while (*v && !ISDIGIT (*v))
347 while (ISDIGIT (*v))
353 gcc_assert (*v == '.' && ISDIGIT (v[1]));
356 while (ISDIGIT (*v))
362 gcc_assert (ISDIGIT (v[1]));
364 while (ISDIGIT (*v))
H A Dscan.c199 if (ISDIGIT (c))
205 } while (c != EOF && ISDIGIT (c));
H A Dstringpool.c94 if (length == 1 && ISDIGIT (contents[0]))
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dscan.c214 if (ISDIGIT (c))
220 } while (c != EOF && ISDIGIT (c));
H A Dstringpool.c88 if (length == 1 && ISDIGIT (contents[0]))
/openbsd-current/gnu/usr.bin/gcc/gcc/f/
H A Dintdoc.c402 if (c[0] == '@' && ISDIGIT (c[1]))
407 while (ISDIGIT (c[0]))
495 if (ISDIGIT (c[colon + 1]))
547 else if (c[1] == '=' && ISDIGIT (c[colon + 1]))
1020 if (c[0] == '@' && ISDIGIT (c[1]))
1025 while (ISDIGIT (c[0]))
/openbsd-current/gnu/lib/libiberty/include/
H A Dsafe-ctype.h97 #define ISDIGIT(c) _sch_test(c, _sch_isdigit) macro
/openbsd-current/gnu/gcc/include/
H A Dsafe-ctype.h97 #define ISDIGIT(c) _sch_test(c, _sch_isdigit) macro
/openbsd-current/gnu/usr.bin/binutils/include/
H A Dsafe-ctype.h97 #define ISDIGIT(c) _sch_test(c, _sch_isdigit) macro
/openbsd-current/gnu/usr.bin/binutils-2.17/include/
H A Dsafe-ctype.h97 #define ISDIGIT(c) _sch_test(c, _sch_isdigit) macro
/openbsd-current/gnu/usr.bin/binutils/gas/config/
H A Dtc-iq2000.c1070 if (ISDIGIT (*input_line_pointer) || *input_line_pointer == '-')
1161 if (! ISDIGIT (*input_line_pointer))
1180 while (ISDIGIT (*input_line_pointer))
1189 if (! ISDIGIT (*input_line_pointer))
1197 while (ISDIGIT (*input_line_pointer))

Completed in 231 milliseconds

123456789