Searched refs:ISSPACE (Results 1 - 25 of 65) sorted by relevance

123

/freebsd-9.3-release/contrib/diff/lib/
H A Dprepargs.c40 #define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c)) macro
56 while (ISSPACE ((unsigned char) *o))
67 while (*o && ! ISSPACE ((unsigned char) *o));
/freebsd-9.3-release/contrib/gcc/
H A Dgengtype-lex.l75 while (ISSPACE (*tagstart))
79 while (ISSPACE (*tagstart))
112 for (namestart = yytext + yyleng - 2; ISSPACE (*namestart); namestart--)
114 for (namelen = 1; !ISSPACE (namestart[-namelen]); namelen++)
118 ISSPACE(*typestart);
122 ISSPACE (typestart[typelen-1]);
137 for (namestart = yytext + yyleng - 7; ISSPACE (*namestart); namestart--)
139 for (namelen = 1; !ISSPACE (namestart[-namelen]); namelen++)
154 for (namestart = yytext + yyleng - 2; ISSPACE (*namestart); namestart--)
156 for (namelen = 1; !ISSPACE (namestar
[all...]
/freebsd-9.3-release/contrib/tcsh/
H A Dvms.termcap.c31 #define ISSPACE(c) ((c) == ' ' || (c) == '\t' || (c) == '\r' || (c) == '\n') macro
102 for (++cp ; ISSPACE(*cp) ; cp++);
159 while (ISSPACE(*cp))
191 while (ISSPACE(*cp))
218 while (ISSPACE(*cp))
H A Dgethost.c53 #define ISSPACE(p) (isspace((unsigned char) (p)) && (p) != '\n') macro
126 for (; *ptr && ISSPACE(*ptr); ptr++)
137 for (tok--; tok >= token && *tok && ISSPACE(*tok); tok--)
/freebsd-9.3-release/contrib/binutils/gas/
H A Dinput-file.c169 && !strncmp (buf, "O_APP", 5) && ISSPACE (buf[5]))
179 && !strncmp (buf, "PP", 2) && ISSPACE (buf[2]))
/freebsd-9.3-release/contrib/cvs/diff/
H A Dutil.c452 while (ISSPACE (c1) && c1 != '\n') c1 = *t1++;
453 while (ISSPACE (c2) && c2 != '\n') c2 = *t2++;
460 if (ISSPACE (c1))
465 if (! ISSPACE (c1))
475 if (ISSPACE (c2))
480 if (! ISSPACE (c2))
496 && ISSPACE(t1[-2]))
503 && ISSPACE(t2[-2]))
H A Dsystem.h222 #ifndef ISSPACE
223 #define ISSPACE(c) (CTYPE_DOMAIN (c) && isspace (c)) macro
H A Dio.c227 if (! ISSPACE (c))
233 if (ISSPACE (c))
238 if (!ISSPACE (c))
257 if (! ISSPACE (c))
263 if (ISSPACE (c))
268 if (!ISSPACE (c))
/freebsd-9.3-release/contrib/ipfilter/lib/
H A Dinet_addr.c87 #define ISSPACE(x) isspace((u_char)(x)) macro
155 if (c != '\0' && (!ISASCII(c) || !ISSPACE(c)))
/freebsd-9.3-release/contrib/binutils/binutils/
H A Drclex.c148 while (ISSPACE (*s))
154 if (len > mlen && memcmp (s, "pragma", mlen) == 0 && ISSPACE (s[mlen]))
159 while (ISSPACE (*s))
167 while (ISSPACE (*s))
173 while (ISSPACE (*s))
204 if (*send != '\0' && ! ISSPACE (*send))
211 while (ISSPACE (*s))
394 assert (ISSPACE (*t));
395 while (ISSPACE (*t))
556 assert (ISSPACE (*
[all...]
/freebsd-9.3-release/contrib/binutils/libiberty/
H A Dstrtod.c59 while (ISSPACE (*p))
H A Dstrtol.c103 } while (ISSPACE(c));
H A Dstrtoul.c74 } while (ISSPACE(c));
/freebsd-9.3-release/contrib/gcclibs/libiberty/
H A Dstrtod.c59 while (ISSPACE (*p))
H A Dstrtol.c103 } while (ISSPACE(c));
H A Dstrtoul.c74 } while (ISSPACE(c));
H A Dargv.c215 if (ISSPACE (*input) && !squote && !dquote && !bsquote)
281 while (ISSPACE (*input))
/freebsd-9.3-release/contrib/binutils/opcodes/
H A Dcgen-asm.in218 if (* str && ! ISSPACE (* str))
296 while (ISSPACE (* str))
345 while (ISSPACE (* str))
H A Di386-gen.c52 while (ISSPACE (*str))
70 if (ISSPACE (str [last]))
193 if (ISSPACE (str[i]) || str[i] == '}')
/freebsd-9.3-release/contrib/gnu-sort/lib/
H A Dxstrtol.c63 #define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c)) macro
120 while (ISSPACE (ch))
/freebsd-9.3-release/gnu/usr.bin/grep/
H A Dxstrtol.c77 #define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c)) macro
130 while (ISSPACE ((unsigned char) *q))
/freebsd-9.3-release/sys/contrib/ipfilter/netinet/
H A Dip_irc_pxy.c99 for (c = *s; !ISSPACE(c) && (i > 0); i--)
123 for (; !ISSPACE(c) && (i > 0); i--)
167 if (ISSPACE(c))
/freebsd-9.3-release/contrib/binutils/include/
H A Dsafe-ctype.h102 #define ISSPACE(c) _sch_test(c, _sch_isspace) macro
/freebsd-9.3-release/contrib/gcclibs/include/
H A Dsafe-ctype.h102 #define ISSPACE(c) _sch_test(c, _sch_isspace) macro
/freebsd-9.3-release/contrib/gdb/include/
H A Dsafe-ctype.h102 #define ISSPACE(c) _sch_test(c, _sch_isspace) macro

Completed in 271 milliseconds

123