| /freebsd-12-stable/contrib/gcclibs/libiberty/ |
| D | strverscmp.c | 130 state = S_N | ((c1 == '0') + (ISDIGIT (c1) != 0)); in strverscmp() 137 state |= (c1 == '0') + (ISDIGIT (c1) != 0); in strverscmp() 140 state = result_type[state << 2 | (((c2 == '0') + (ISDIGIT (c2) != 0)))]; in strverscmp() 148 while (ISDIGIT (*p1++)) in strverscmp() 149 if (!ISDIGIT (*p2++)) in strverscmp() 152 return ISDIGIT (*p2) ? -1 : diff; in strverscmp()
|
| D | strtod.c | 105 if (ISDIGIT (*p) || *p == '.') in strtod() 108 while (ISDIGIT (*p) || (!got_dot && *p == '.')) in strtod() 122 if (ISDIGIT (p[i])) in strtod() 124 while (ISDIGIT (p[i])) in strtod()
|
| D | cplus-dem.c | 496 if (! ISDIGIT ((unsigned char)**type)) in consume_count() 499 while (ISDIGIT ((unsigned char)**type)) in consume_count() 510 while (ISDIGIT ((unsigned char) **type)) in consume_count() 538 if (!ISDIGIT ((unsigned char)**mangled)) in consume_count_with_underscores() 947 if (ISDIGIT ((unsigned char) mangled[len0 - 1])) { in ada_demangle() 948 for (i = len0 - 2; i >= 0 && ISDIGIT ((unsigned char) mangled[i]); i -= 1) in ada_demangle() 1457 while (**mangled && ISDIGIT ((unsigned char)**mangled)) in demangle_signature() 1793 while (ISDIGIT ((unsigned char)**mangled)) in demangle_real_value() 1802 while (ISDIGIT ((unsigned char)**mangled)) in demangle_real_value() 1812 while (ISDIGIT ((unsigned char)**mangled)) in demangle_real_value() [all …]
|
| D | _doprnt.c | 101 while (ISDIGIT(*ptr)) /* Handle explicit numeric value. */ in _doprnt() 110 while (ISDIGIT(*ptr)) /* Handle explicit numeric value. */ in _doprnt()
|
| /freebsd-12-stable/contrib/binutils/libiberty/ |
| D | strtod.c | 105 if (ISDIGIT (*p) || *p == '.') in strtod() 108 while (ISDIGIT (*p) || (!got_dot && *p == '.')) in strtod() 122 if (ISDIGIT (p[i])) in strtod() 124 while (ISDIGIT (p[i])) in strtod()
|
| D | cplus-dem.c | 496 if (! ISDIGIT ((unsigned char)**type)) in consume_count() 499 while (ISDIGIT ((unsigned char)**type)) in consume_count() 510 while (ISDIGIT ((unsigned char) **type)) in consume_count() 538 if (!ISDIGIT ((unsigned char)**mangled)) in consume_count_with_underscores() 947 if (ISDIGIT ((unsigned char) mangled[len0 - 1])) { in ada_demangle() 948 for (i = len0 - 2; i >= 0 && ISDIGIT ((unsigned char) mangled[i]); i -= 1) in ada_demangle() 1457 while (**mangled && ISDIGIT ((unsigned char)**mangled)) in demangle_signature() 1793 while (ISDIGIT ((unsigned char)**mangled)) in demangle_real_value() 1802 while (ISDIGIT ((unsigned char)**mangled)) in demangle_real_value() 1812 while (ISDIGIT ((unsigned char)**mangled)) in demangle_real_value() [all …]
|
| D | _doprnt.c | 101 while (ISDIGIT(*ptr)) /* Handle explicit numeric value. */ in _doprnt() 110 while (ISDIGIT(*ptr)) /* Handle explicit numeric value. */ in _doprnt()
|
| /freebsd-12-stable/sbin/ipf/libipf/ |
| D | printpooldata.c | 27 ISDIGIT(*pool->ipo_name) ? "Number" : "Name", in printpooldata() 39 (!*pool->ipo_name || ISDIGIT(*pool->ipo_name)) ? \ in printpooldata() 43 (!*pool->ipo_name || ISDIGIT(*pool->ipo_name)) ? \ in printpooldata()
|
| D | inet_addr.c | 80 #define ISDIGIT(x) isdigit((u_char)(x)) macro 110 if (!ISDIGIT(c)) in inet_aton() 121 if (ISASCII(c) && ISDIGIT(c)) { in inet_aton()
|
| D | getportproto.c | 20 if (ISDIGIT(*name)) { in getportproto() 25 if (!ISDIGIT(*s)) in getportproto()
|
| D | printhashdata.c | 41 ISDIGIT(*hp->iph_name) ? "Number" : "Name", in printhashdata() 55 ISDIGIT(*hp->iph_name) ? "number" : "name", in printhashdata()
|
| D | ipft_tx.c | 55 if (ISDIGIT(*host)) in tx_hostnum() 76 if (ISDIGIT(*name)) in tx_portnum() 228 } else if (ISDIGIT(**cpp) && !index(*cpp, '.')) { in parseline() 372 } else if (ISDIGIT(**cpp) && !index(*cpp, ':')) { in parseipv6()
|
| /freebsd-12-stable/contrib/binutils/gas/ |
| D | atof-generic.c | 168 if (ISDIGIT (c)) in atof_generic() 197 for (p++; (c = *p) && ISDIGIT (c); p++) in atof_generic() 218 if (ISDIGIT (c)) in atof_generic() 272 if (ISDIGIT (c)) in atof_generic() 383 if (ISDIGIT (c)) in atof_generic()
|
| /freebsd-12-stable/contrib/tcsh/ |
| D | vms.termcap.c | 31 #define ISDIGIT(x) ((x) >= '0' && (x) <= '9') macro 165 for (ret = 0, cp++ ; *cp && ISDIGIT(*cp) ; cp++) in tgetnum() 254 for (i=0 ; *cp && ISDIGIT(*cp) ; in tgetstr() 344 for (delay = 0; *cp && ISDIGIT(*cp) ; cp++) in tputs()
|
| /freebsd-12-stable/usr.bin/patch/ |
| D | backupfile.c | 29 #define ISDIGIT(c) (isascii ((unsigned char)c) && isdigit ((unsigned char)c)) macro 145 if (!strncmp(base, backup, base_length) && ISDIGIT(backup[base_length])) { in version_number() 146 for (p = &backup[base_length]; ISDIGIT(*p); ++p) in version_number()
|
| /freebsd-12-stable/contrib/gcc/ |
| D | c-cppbuiltin.c | 343 while (*v && !ISDIGIT (*v)) in define__GNUC__() 348 while (ISDIGIT (*v)) in define__GNUC__() 354 gcc_assert (*v == '.' && ISDIGIT (v[1])); in define__GNUC__() 357 while (ISDIGIT (*v)) in define__GNUC__() 363 gcc_assert (ISDIGIT (v[1])); in define__GNUC__() 365 while (ISDIGIT (*v)) in define__GNUC__()
|
| D | pretty-print.c | 284 if (ISDIGIT (*p)) in pp_base_format() 315 if (ISDIGIT (*p)) in pp_base_format() 322 while (ISDIGIT (p[-1])); in pp_base_format() 331 if (ISDIGIT (*p)) in pp_base_format() 499 if (ISDIGIT (*p)) in pp_base_format()
|
| D | scan.c | 199 if (ISDIGIT (c)) in get_token() 205 } while (c != EOF && ISDIGIT (c)); in get_token()
|
| /freebsd-12-stable/sys/netpfil/ipfilter/netinet/ |
| D | ip_irc_pxy.c | 180 if (!ISDIGIT(c)) in ipf_p_irc_complete() 186 for (l = 0; ISDIGIT(c) && (i > 0); i--) { in ipf_p_irc_complete() 202 if (!ISDIGIT(c)) in ipf_p_irc_complete() 207 for (l = 0; ISDIGIT(c) && (i > 0); i--) { in ipf_p_irc_complete()
|
| D | ip_ftp_pxy.c | 719 while (*s && !ISDIGIT(*s)) { in ipf_p_ftp_pasv() 965 if (!ISDIGIT(*rptr) || !ISDIGIT(*(rptr + 1)) || !ISDIGIT(*(rptr + 2))) in ipf_p_ftp_server() 1142 if (ISDIGIT(c)) { in ipf_p_ftp_server_valid() 1146 if (ISDIGIT(c)) { in ipf_p_ftp_server_valid() 1150 if (ISDIGIT(c)) { in ipf_p_ftp_server_valid() 1603 while (((c = *s++) != '\0') && ISDIGIT(c)) { in ipf_p_ftp_atoi() 1611 while (((c = *s++) != '\0') && ISDIGIT(c)) { in ipf_p_ftp_atoi() 1682 while (((c = *s++) != '\0') && ISDIGIT(c)) { in ipf_p_ftp_eprt4() 1693 while (((c = *s++) != '\0') && ISDIGIT(c)) { in ipf_p_ftp_eprt4() 1704 while (((c = *s++) != '\0') && ISDIGIT(c)) { in ipf_p_ftp_eprt4() [all …]
|
| /freebsd-12-stable/contrib/nvi/common/ |
| D | multibyte.h | 45 #define ISDIGIT iswdigit macro 79 #define ISDIGIT isdigit macro
|
| /freebsd-12-stable/contrib/gcc/config/i386/ |
| D | netware.c | 183 if (ISDIGIT (p[1])) in i386_nlm_strip_name_encoding() 187 gcc_assert (ISDIGIT (*name)); in i386_nlm_strip_name_encoding()
|
| /freebsd-12-stable/contrib/diff/src/ |
| D | ifdef.c | 143 if (ISDIGIT (*f)) in format_group() 318 while (ISDIGIT (c)) in do_printf_spec() 321 while (ISDIGIT (c = *f++)) in do_printf_spec()
|
| /freebsd-12-stable/sbin/ipf/common/ |
| D | lexer.c | 29 #define ishex(c) (ISDIGIT(c) || ((c) >= 'a' && (c) <= 'f') || \ 280 } while (ISALPHA(n) || ISDIGIT(n) || n == '_'); in yylex() 522 if (isbuilding == 0 && ISDIGIT(c)) { in yylex() 525 } while (ISDIGIT(n)); in yylex()
|
| /freebsd-12-stable/contrib/binutils/binutils/ |
| D | stabs.c | 296 if (ISDIGIT (d)) in parse_number() 750 if (ISDIGIT (*p) || *p == '(' || *p == '-') in parse_stab_string() 1147 if (! ISDIGIT (**pp) && **pp != '(' && **pp != '-') in parse_stab_type() 1188 if (ISDIGIT (*p) || *p == '(' || *p == '-') in parse_stab_type() 2830 && (ISDIGIT (argtypes[2]) in parse_stab_argtypes() 3061 if (! ISDIGIT (**pp) && **pp != '-') in parse_stab_array_type() 3075 if (! ISDIGIT (**pp) && **pp != '-') in parse_stab_array_type() 3653 while (ISDIGIT (**pp)) in stab_demangle_count() 3668 if (! ISDIGIT (**pp)) in stab_demangle_get_count() 3673 if (ISDIGIT (**pp)) in stab_demangle_get_count() [all …]
|