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

12345

/freebsd-11-stable/contrib/gcclibs/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. */
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...]
/freebsd-11-stable/contrib/ipfilter/lib/
H A Dgetportproto.c21 if (ISDIGIT(*name)) {
26 if (!ISDIGIT(*s))
H A Dgetproto.c21 if (!ISDIGIT(*s))
H A Dprintpooldata.c27 ISDIGIT(*pool->ipo_name) ? "Number" : "Name",
39 (!*pool->ipo_name || ISDIGIT(*pool->ipo_name)) ? \
H A Dinet_addr.c80 #define ISDIGIT(x) isdigit((u_char)(x)) macro
112 if (!ISDIGIT(c))
123 if (ISASCII(c) && ISDIGIT(c)) {
H A Dconnecttcp.c26 if (ISDIGIT(*server)) {
H A Dprinthashdata.c43 ISDIGIT(*hp->iph_name) ? "Number" : "Name",
57 ISDIGIT(*hp->iph_name) ? "number" : "name",
H A Dgetport.c30 if (ISDIGIT(*name)) {
/freebsd-11-stable/contrib/binutils/libiberty/
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. */
/freebsd-11-stable/contrib/tcsh/
H A Dvms.termcap.c31 #define ISDIGIT(x) ((x) >= '0' && (x) <= '9') macro
165 for (ret = 0, cp++ ; *cp && ISDIGIT(*cp) ; cp++)
254 for (i=0 ; *cp && ISDIGIT(*cp) ;
344 for (delay = 0; *cp && ISDIGIT(*cp) ; cp++)
/freebsd-11-stable/contrib/binutils/gas/
H A Datof-generic.c168 if (ISDIGIT (c))
197 for (p++; (c = *p) && ISDIGIT (c); p++)
218 if (ISDIGIT (c))
272 if (ISDIGIT (c))
383 if (ISDIGIT (c))
/freebsd-11-stable/usr.bin/patch/
H A Dbackupfile.c29 #define ISDIGIT(c) (isascii ((unsigned char)c) && isdigit ((unsigned char)c)) macro
145 if (!strncmp(base, backup, base_length) && ISDIGIT(backup[base_length])) {
146 for (p = &backup[base_length]; ISDIGIT(*p); ++p)
/freebsd-11-stable/contrib/gcc/config/i386/
H A Dnetware.c183 if (ISDIGIT (p[1]))
187 gcc_assert (ISDIGIT (*name));
/freebsd-11-stable/contrib/nvi/common/
H A Dmultibyte.h47 #define ISDIGIT iswdigit macro
81 #define ISDIGIT isdigit macro
/freebsd-11-stable/contrib/gcc/
H A Dc-cppbuiltin.c343 while (*v && !ISDIGIT (*v))
348 while (ISDIGIT (*v))
354 gcc_assert (*v == '.' && ISDIGIT (v[1]));
357 while (ISDIGIT (*v))
363 gcc_assert (ISDIGIT (v[1]));
365 while (ISDIGIT (*v))
H A Dscan.c199 if (ISDIGIT (c))
205 } while (c != EOF && ISDIGIT (c));
/freebsd-11-stable/sys/contrib/ipfilter/netinet/
H A Dip_irc_pxy.c183 if (!ISDIGIT(c))
189 for (l = 0; ISDIGIT(c) && (i > 0); i--) {
205 if (!ISDIGIT(c))
210 for (l = 0; ISDIGIT(c) && (i > 0); i--) {

Completed in 361 milliseconds

12345