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

123456789

/haiku-buildtools/binutils/libiberty/
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.c106 if (ISDIGIT (*p) || *p == '.')
109 while (ISDIGIT (*p) || (!got_dot && *p == '.'))
123 if (ISDIGIT (p[i]))
125 while (ISDIGIT (p[i]))
H A Dstrtol.c141 if (ISDIGIT(c))
H A Dstrtoul.c91 if (ISDIGIT(c))
H A Dstrtoll.c149 if (ISDIGIT(c))
H A Dstrtoull.c96 if (ISDIGIT(c))
H A D_doprnt.c101 while (ISDIGIT(*ptr)) /* Handle explicit numeric value. */
110 while (ISDIGIT(*ptr)) /* Handle explicit numeric value. */
/haiku-buildtools/gcc/libiberty/
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.c106 if (ISDIGIT (*p) || *p == '.')
109 while (ISDIGIT (*p) || (!got_dot && *p == '.'))
123 if (ISDIGIT (p[i]))
125 while (ISDIGIT (p[i]))
H A Dstrtol.c141 if (ISDIGIT(c))
H A Dstrtoul.c91 if (ISDIGIT(c))
H A Dstrtoll.c149 if (ISDIGIT(c))
H A Dstrtoull.c96 if (ISDIGIT(c))
/haiku-buildtools/legacy/binutils/libiberty/
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. */
/haiku-buildtools/legacy/gcc/gcc/f/
H A Dproj.c35 while (ISDIGIT (*nptr))
/haiku-buildtools/gcc/gcc/config/
H A Ddarwin-driver.c55 if (! ISDIGIT (osversion[0]))
59 if (ISDIGIT (*version_p))
66 if (! ISDIGIT (*version_p))
/haiku-buildtools/gcc/gcc/ada/
H A Dadadecode.c47 #ifndef ISDIGIT
48 #define ISDIGIT(c) isdigit(c) macro
247 while (ISDIGIT ((int) ada_name[(int) len - 1 - n_digits]))
268 while (ISDIGIT (ada_name[last]) && last > 0)
/haiku-buildtools/gcc/gcc/config/avr/
H A Davr-devices.c144 if (ISALPHA (*a) && ISDIGIT (*b))
147 if (ISDIGIT (*a) && ISALPHA (*b))
/haiku-buildtools/legacy/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))
385 if (ISDIGIT (c))
/haiku-buildtools/binutils/gas/
H A Datof-generic.c167 if (ISDIGIT (c))
196 for (p++; (c = *p) && ISDIGIT (c); p++)
217 if (ISDIGIT (c))
271 if (ISDIGIT (c))
384 if (ISDIGIT (c))
/haiku-buildtools/legacy/gcc/gcc/
H A Dscan.c213 if (ISDIGIT (c))
219 } while (c != EOF && ISDIGIT(c));

Completed in 114 milliseconds

123456789