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

123456

/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dgengtype-lex.l72 while (ISSPACE (*tagstart))
76 while (ISSPACE (*tagstart))
102 for (namestart = yytext + yyleng - 2; ISSPACE (*namestart); namestart--)
104 for (namelen = 1; !ISSPACE (namestart[-namelen]); namelen++)
108 ISSPACE(*typestart);
112 ISSPACE(typestart[typelen-1]);
126 for (namestart = yytext + yyleng - 7; ISSPACE (*namestart); namestart--)
128 for (namelen = 1; !ISSPACE (namestart[-namelen]); namelen++)
161 ISSPACE(*tagstart);
169 while (ISSPACE (*tagstar
[all...]
/openbsd-current/gnu/gcc/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...]
H A Dgengtype-lex.c2003 while (ISSPACE (*tagstart))
2007 while (ISSPACE (*tagstart))
2044 for (namestart = yytext + yyleng - 2; ISSPACE (*namestart); namestart--)
2046 for (namelen = 1; !ISSPACE (namestart[-namelen]); namelen++)
2050 ISSPACE(*typestart);
2054 ISSPACE (typestart[typelen-1]);
2073 for (namestart = yytext + yyleng - 7; ISSPACE (*namestart); namestart--)
2075 for (namelen = 1; !ISSPACE (namestart[-namelen]); namelen++)
2094 for (namestart = yytext + yyleng - 2; ISSPACE (*namestart); namestart--)
2096 for (namelen = 1; !ISSPACE (namestar
[all...]
/openbsd-current/gnu/usr.bin/binutils/gas/config/
H A Dtc-mcore.c355 while (*ilp != 0 && ISSPACE (*ilp))
359 && (ISSPACE (ilp[5]) || *ilp == '\n' || *ilp == '\r'))
435 while (ISSPACE (* s))
495 while (ISSPACE (* s))
598 while (ISSPACE (* s))
856 while (ISSPACE (* s))
863 while (ISSPACE (* s))
889 while (ISSPACE (* s))
922 while (ISSPACE (* str))
1021 while (ISSPACE (* op_en
[all...]
/openbsd-current/gnu/usr.bin/binutils-2.17/gas/config/
H A Dtc-mcore.c365 while (*ilp != 0 && ISSPACE (*ilp))
369 && (ISSPACE (ilp[5]) || *ilp == '\n' || *ilp == '\r'))
499 while (ISSPACE (* s))
557 while (ISSPACE (* s))
656 while (ISSPACE (* s))
803 while (ISSPACE (* s))
810 while (ISSPACE (* s))
836 while (ISSPACE (* s))
868 while (ISSPACE (* str))
968 while (ISSPACE (* op_en
[all...]
/openbsd-current/usr.bin/make/
H A Dparse.c594 if (ISSPACE(*p) || *p == '\0')
605 } while (*p != '\0' && !ISSPACE(*p));
620 for (cp = line; *cp && !ISSPACE(*cp) && *cp != '(';) {
684 while (ISSPACE(*cp))
795 while (ISSPACE(*cp))
913 while (*cp && !ISSPACE(*cp))
933 while (ISSPACE(*cp))
944 while (*cp && !ISSPACE(*cp)) {
984 while (ISSPACE(*cp))
1175 while (ISSPACE(*fil
[all...]
H A Dfor.c140 while (ISSPACE(*ptr))
151 for (wrd = ptr; *ptr && !ISSPACE(*ptr); ptr++)
160 while (ISSPACE(*ptr))
219 for (ptr++; ISSPACE(*ptr); ptr++)
223 (ISSPACE(ptr[6]) || !ptr[6])) {
232 ISSPACE(ptr[3])) {
H A Dparsevar.c47 if (ISSPACE(*p) || *p == '$' || *p == '\0')
75 while (ISSPACE(*arg))
137 while (ISSPACE(*arg))
H A Dcond.c209 while (ISSPACE(*cp))
220 while (ISSPACE(*cp))
225 while (ISSPACE(*cp))
402 while (*end != '\0' && !ISSPACE(*end) && strchr("!=><", *end) == NULL)
425 if (*condExpr && !ISSPACE(*condExpr) &&
436 for (;*condExpr && !ISSPACE(*condExpr); condExpr++)
478 while (ISSPACE(*condExpr))
501 while (ISSPACE(*condExpr))
596 while (!ISSPACE(*condExpr) && *condExpr != '\0')
685 for (p = val; ISSPACE(*
[all...]
H A Ddefines.h103 #define ISSPACE(c) (isspace((unsigned char)(c))) macro
H A Dexpandchildren.c115 if (ISSPACE(*cp2)) {
121 while (ISSPACE(*cp2))
H A Dstr.c206 while (ISSPACE(*start))
/openbsd-current/gnu/usr.bin/binutils/gas/
H A Dinput-file.c176 if (!strncmp (buf, "O_APP", 5) && ISSPACE (buf[5]))
186 if (!strncmp (buf, "PP", 2) && ISSPACE (buf[2]))
/openbsd-current/gnu/usr.bin/binutils-2.17/gas/
H A Dinput-file.c172 if (!strncmp (buf, "O_APP", 5) && ISSPACE (buf[5]))
182 if (!strncmp (buf, "PP", 2) && ISSPACE (buf[2]))
/openbsd-current/gnu/usr.bin/cvs/diff/
H A Dutil.c450 while (ISSPACE (c1) && c1 != '\n') c1 = *t1++;
451 while (ISSPACE (c2) && c2 != '\n') c2 = *t2++;
458 if (ISSPACE (c1))
463 if (! ISSPACE (c1))
473 if (ISSPACE (c2))
478 if (! ISSPACE (c2))
494 && ISSPACE(t1[-2]))
501 && ISSPACE(t2[-2]))
H A Dsystem.h202 #ifndef ISSPACE
203 #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))
/openbsd-current/gnu/lib/libiberty/src/
H A Dstrtod.c59 while (ISSPACE (*p))
H A Dstrtol.c103 } while (ISSPACE(c));
H A Dstrtoul.c74 } while (ISSPACE(c));
/openbsd-current/usr.bin/gencat/
H A Dgencat.c69 #define ISSPACE(c) \ macro
268 if (!*cptr || !ISSPACE(*cptr)) {
272 while (*cptr && ISSPACE(*cptr))
280 if (!*cptr || ISSPACE(*cptr)) {
284 while (*cptr && !ISSPACE(*cptr))
316 if (*tmp && (!ISSPACE(*tmp) || *wskip(tmp))) {
437 } else if (ISSPACE(*cptr)) {
/openbsd-current/gnu/usr.bin/binutils/binutils/
H A Drclex.l254 while (ISSPACE (*s))
258 if (*send != '\0' && ! ISSPACE (*send))
265 while (ISSPACE (*s))
423 assert (ISSPACE (*t));
424 while (ISSPACE (*t))
/openbsd-current/gnu/usr.bin/binutils-2.17/binutils/
H A Drclex.l257 while (ISSPACE (*s))
261 if (*send != '\0' && ! ISSPACE (*send))
268 while (ISSPACE (*s))
431 assert (ISSPACE (*t));
432 while (ISSPACE (*t))
/openbsd-current/gnu/usr.bin/binutils-2.17/opcodes/
H A Dopenrisc-asm.c429 if (* str && ! ISSPACE (* str))
507 while (ISSPACE (* str))
556 while (ISSPACE (* str))
/openbsd-current/gnu/lib/libiberty/include/
H A Dsafe-ctype.h102 #define ISSPACE(c) _sch_test(c, _sch_isspace) macro

Completed in 317 milliseconds

123456