HomeSort by: relevance | last modified time | path
    Searched refs:ISDIGIT (Results 1 - 11 of 11) sorted by relevancy

  /src/bin/sh/
syntax.h 64 #define ISDIGIT 01 /* a digit */
88 #define is_in_name(c) (sh_ctype(c) & (ISUPPER|ISLOWER|ISUNDER|ISDIGIT))
89 #define is_special(c) (sh_ctype(c) & (ISSPECL|ISDIGIT))
  /src/sys/dev/raidframe/
rf_utils.c 105 #define ISDIGIT(x) ( (x) >= '0' && (x) <= '9' )
107 #define ISHEX(x) ( ISDIGIT(x) || ISHEXCHAR(x) )
120 for (; ISDIGIT(*p); p++)
  /src/usr.bin/patch/
backupfile.c 38 #define ISDIGIT(c) (isascii ((unsigned char)c) && isdigit ((unsigned char)c))
154 if (!strncmp(base, backup, base_length) && ISDIGIT(backup[base_length])) {
155 for (p = &backup[base_length]; ISDIGIT(*p); ++p)
  /src/sys/arch/x68k/stand/loadbsd/
loadbsd.c 46 #define ISDIGIT(c) ((c) >= '0' && (c) <= '9')
49 do { var *= 10; var += *str++ - '0'; } while (ISDIGIT(*str))
99 if (!ISDIGIT(*p))
220 if (!ISDIGIT(*s))
229 if (!ISDIGIT(*s))
  /src/sys/external/bsd/ipf/netinet/
ip_irc_pxy.c 185 if (!ISDIGIT(c))
191 for (l = 0; ISDIGIT(c) && (i > 0); i--) {
207 if (!ISDIGIT(c))
212 for (l = 0; ISDIGIT(c) && (i > 0); i--) {
ip_ftp_pxy.c 719 while (*s && !ISDIGIT(*s)) {
968 if (!ISDIGIT(*rptr) || !ISDIGIT(*(rptr + 1)) || !ISDIGIT(*(rptr + 2)))
1145 if (ISDIGIT(c)) {
1149 if (ISDIGIT(c)) {
1153 if (ISDIGIT(c)) {
1614 while (((c = *s++) != '\0') && ISDIGIT(c)) {
1622 while (((c = *s++) != '\0') && ISDIGIT(c)) {
1693 while (((c = *s++) != '\0') && ISDIGIT(c))
    [all...]
ip_rpcb_pxy.c 670 if (!(ISDIGIT(uastr[0]) && ISDIGIT(uastr[l-1])))
674 if (ISDIGIT(*c)) {
727 while (((c = *s++) != '\0') && ISDIGIT(c)) {
ip_rcmd_pxy.c 124 while (((c = *s++) != '\0') && ISDIGIT(c)) {
ip_compat.h 705 #define ISDIGIT(x) isdigit((u_char)(x))
  /src/tests/lib/libc/gen/
h_ctype_abuse.c 56 M(ISDIGIT, isdigit) \
  /src/libexec/makewhatis/
makewhatis.c 121 #define ISDIGIT(c) isdigit((unsigned char)(c))
723 while (ISDIGIT(*from))

Completed in 22 milliseconds