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

12

/freebsd-current/sbin/ipf/libipf/
H A Dgetportproto.c19 if (ISDIGIT(*name)) {
24 if (!ISDIGIT(*s))
H A Dprintpooldata.c27 ISDIGIT(*pool->ipo_name) ? "Number" : "Name",
39 (!*pool->ipo_name || ISDIGIT(*pool->ipo_name)) ? \
43 (!*pool->ipo_name || ISDIGIT(*pool->ipo_name)) ? \
H A Dgetproto.c22 if (!ISDIGIT(*s))
H A Dinet_addr.c75 #define ISDIGIT(x) isdigit((u_char)(x)) macro
105 if (!ISDIGIT(c))
116 if (ISASCII(c) && ISDIGIT(c)) {
H A Dconnecttcp.c26 if (ISDIGIT(*server)) {
H A Dprinthashdata.c41 ISDIGIT(*hp->iph_name) ? "Number" : "Name",
55 ISDIGIT(*hp->iph_name) ? "number" : "name",
H A Dgetport.c27 if (ISDIGIT(*name)) {
H A Dipft_tx.c50 if (ISDIGIT(*host))
71 if (ISDIGIT(*name))
223 } else if (ISDIGIT(**cpp) && !index(*cpp, '.')) {
367 } else if (ISDIGIT(**cpp) && !index(*cpp, ':')) {
H A Dipft_hx.c165 c = ISDIGIT(c) ? (c - '0') : (TOUPPER(c) - 55);
H A Dvar.c55 if (!ISALPHA(*t) && !ISDIGIT(*t) && (*t != '_'))
/freebsd-current/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-current/usr.bin/patch/
H A Dbackupfile.c28 #define ISDIGIT(c) (isascii ((unsigned char)c) && isdigit ((unsigned char)c)) macro
144 if (!strncmp(base, backup, base_length) && ISDIGIT(backup[base_length])) {
145 for (p = &backup[base_length]; ISDIGIT(*p); ++p)
/freebsd-current/contrib/nvi/common/
H A Dmultibyte.h45 #define ISDIGIT iswdigit macro
79 #define ISDIGIT isdigit macro
/freebsd-current/sys/netpfil/ipfilter/netinet/
H A Dip_irc_pxy.c180 if (!ISDIGIT(c))
186 for (l = 0; ISDIGIT(c) && (i > 0); i--) {
202 if (!ISDIGIT(c))
207 for (l = 0; ISDIGIT(c) && (i > 0); i--) {
H A Dip_ftp_pxy.c714 while (*s && !ISDIGIT(*s)) {
960 if (!ISDIGIT(*rptr) || !ISDIGIT(*(rptr + 1)) || !ISDIGIT(*(rptr + 2)))
1137 if (ISDIGIT(c)) {
1141 if (ISDIGIT(c)) {
1145 if (ISDIGIT(c)) {
1598 while (((c = *s++) != '\0') && ISDIGIT(c)) {
1606 while (((c = *s++) != '\0') && ISDIGIT(c)) {
1677 while (((c = *s++) != '\0') && ISDIGIT(
[all...]
H A Dip_rpcb_pxy.c664 if (!(ISDIGIT(uastr[0]) && ISDIGIT(uastr[l-1])))
668 if (ISDIGIT(*c)) {
721 while (((c = *s++) != '\0') && ISDIGIT(c)) {
/freebsd-current/sbin/ipf/ipsend/
H A Dsdlpi.c60 while (*s && !ISDIGIT(*s))
/freebsd-current/sbin/ipf/common/
H A Dlexer.c29 #define ishex(c) (ISDIGIT(c) || ((c) >= 'a' && (c) <= 'f') || \
280 } while (ISALPHA(n) || ISDIGIT(n) || n == '_');
522 if (isbuilding == 0 && ISDIGIT(c)) {
525 } while (ISDIGIT(n));
/freebsd-current/sys/netinet/libalias/
H A Dalias_smedia.c209 #define ISDIGIT(a) (((a) >= '0') && ((a) <= '9')) macro
284 if (ISDIGIT(port_data[i]))
292 if (ISDIGIT(port_data[i]))
/freebsd-current/share/examples/ipfilter/l4check/
H A Dl4check.c416 if (ISDIGIT(*host) && inet_aton(host, &ip))
419 if (ISDIGIT(*host))
432 if (ISDIGIT(*port))
/freebsd-current/sbin/ipf/ipscan/
H A Dipscan_y.y217 if (j && (!ISDIGIT(c) || (c > '7') ||
242 } else if (ISDIGIT(c)) {
/freebsd-current/contrib/diff/src/
H A Dsystem.h205 /* ISDIGIT differs from isdigit, as follows:
210 Prefer ISDIGIT to isdigit unless it's important to use the locale's
212 #define ISDIGIT(c) ((unsigned int) (c) - '0' <= 9) macro
H A Difdef.c143 if (ISDIGIT (*f))
318 while (ISDIGIT (c))
321 while (ISDIGIT (c = *f++))
/freebsd-current/contrib/nvi/vi/
H A Dvi.c508 if (ISDIGIT(key) && key != '0') {
666 if (ISDIGIT(vp->character)) {
1147 } while (ISDIGIT(ev.e_c));
1155 } while (ISDIGIT(ev.e_c));
/freebsd-current/contrib/nvi/ex/
H A Dex.c1048 if (!ISDIGIT(ecp->cp[0])) {
1058 if (!ISDIGIT(*ecp->cp) && (*np != '+' ||
1955 if (ecp->clen > 1 && ISDIGIT(ecp->cp[1]))
1973 if (ecp->clen != 0 && (ISDIGIT(ecp->cp[0]) ||
2011 if (ecp->clen == 0 || (!ISDIGIT(ecp->cp[0]) &&
2015 if (!ISDIGIT(ecp->cp[0]) &&
2016 !ISDIGIT(ecp->cp[1])) {

Completed in 282 milliseconds

12