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

12

/freebsd-13-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)) {
H A Dipft_hx.c173 c = ISDIGIT(c) ? (c - '0') : (TOUPPER(c) - 55);
H A Dipft_tx.c56 if (ISDIGIT(*host))
77 if (ISDIGIT(*name))
235 } else if (ISDIGIT(**cpp) && !index(*cpp, '.')) {
382 } else if (ISDIGIT(**cpp) && !index(*cpp, ':')) {
H A Dvar.c59 if (!ISALPHA(*t) && !ISDIGIT(*t) && (*t != '_'))
/freebsd-13-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-13-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-13-stable/contrib/nvi/common/
H A Dmultibyte.h45 #define ISDIGIT iswdigit macro
79 #define ISDIGIT isdigit macro
/freebsd-13-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--) {
H A Dip_ftp_pxy.c752 while (*s && !ISDIGIT(*s)) {
1018 if (!ISDIGIT(*rptr) || !ISDIGIT(*(rptr + 1)) || !ISDIGIT(*(rptr + 2)))
1201 if (ISDIGIT(c)) {
1205 if (ISDIGIT(c)) {
1209 if (ISDIGIT(c)) {
1679 while (((c = *s++) != '\0') && ISDIGIT(c)) {
1687 while (((c = *s++) != '\0') && ISDIGIT(c)) {
1768 while (((c = *s++) != '\0') && ISDIGIT(
[all...]
H A Dip_rpcb_pxy.c693 if (!(ISDIGIT(uastr[0]) && ISDIGIT(uastr[l-1])))
697 if (ISDIGIT(*c)) {
751 while (((c = *s++) != '\0') && ISDIGIT(c)) {
/freebsd-13-stable/contrib/ipfilter/ipsend/
H A Dsdlpi.c66 while (*s && !ISDIGIT(*s))
/freebsd-13-stable/contrib/ipfilter/tools/
H A Dlexer.c29 #define ishex(c) (ISDIGIT(c) || ((c) >= 'a' && (c) <= 'f') || \
278 } while (ISALPHA(n) || ISDIGIT(n) || n == '_');
520 if (isbuilding == 0 && ISDIGIT(c)) {
523 } while (ISDIGIT(n));
H A Dipscan_y.y219 if (j && (!ISDIGIT(c) || (c > '7') ||
244 } else if (ISDIGIT(c)) {
/freebsd-13-stable/sys/netinet/libalias/
H A Dalias_smedia.c211 #define ISDIGIT(a) (((a) >= '0') && ((a) <= '9')) macro
286 if (ISDIGIT(port_data[i]))
294 if (ISDIGIT(port_data[i]))
/freebsd-13-stable/contrib/ipfilter/l4check/
H A Dl4check.c421 if (ISDIGIT(*host) && inet_aton(host, &ip))
424 if (ISDIGIT(*host))
437 if (ISDIGIT(*port))
/freebsd-13-stable/contrib/diff/src/
H A Difdef.c143 if (ISDIGIT (*f))
318 while (ISDIGIT (c))
321 while (ISDIGIT (c = *f++))
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
/freebsd-13-stable/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-13-stable/contrib/nvi/ex/
H A Dex.c1044 if (!ISDIGIT(ecp->cp[0])) {
1054 if (!ISDIGIT(*ecp->cp) && (*np != '+' ||
1946 if (ecp->clen > 1 && ISDIGIT(ecp->cp[1]))
1964 if (ecp->clen != 0 && (ISDIGIT(ecp->cp[0]) ||
2002 if (ecp->clen == 0 || (!ISDIGIT(ecp->cp[0]) &&
2006 if (!ISDIGIT(ecp->cp[0]) &&
2007 !ISDIGIT(ecp->cp[1])) {

Completed in 245 milliseconds

12