Symbol: NIL
games/canfield/canfield/canfield.c
1017
if (talon != NIL && (talon->visible == FALSE)) {
games/canfield/canfield/canfield.c
1058
for (ptr = talon; ptr != NIL; ptr = ptr->next) {
games/canfield/canfield/canfield.c
1062
for (ptr = hand; ptr != NIL; ptr = ptr->next) {
games/canfield/canfield/canfield.c
1077
for (ptr = stock, row = stockrow; ptr != NIL; ptr = ptr->next, row++) {
games/canfield/canfield/canfield.c
1082
if (stock == NIL) {
games/canfield/canfield/canfield.c
1168
if (tableau[des] == NIL)
games/canfield/canfield/canfield.c
1224
bottom[sour] = NIL;
games/canfield/canfield/canfield.c
1225
if (bottom[des] == NIL)
games/canfield/canfield/canfield.c
1229
tableau[sour] = NIL;
games/canfield/canfield/canfield.c
1277
if (found[tempbase] != NIL)
games/canfield/canfield/canfield.c
1400
if (talon == NIL && hand != NIL)
games/canfield/canfield/canfield.c
451
ptr != NIL;
games/canfield/canfield/canfield.c
489
ptr != NIL;
games/canfield/canfield/canfield.c
514
cards[i].next = NIL;
games/canfield/canfield/canfield.c
591
if (cp == NIL)
games/canfield/canfield/canfield.c
634
if (*cp != NIL)
games/canfield/canfield/canfield.c
652
if (*cp != NIL) {
games/canfield/canfield/canfield.c
686
deck[0]->next = NIL;
games/canfield/canfield/canfield.c
688
deck[13]->next = NIL;
games/canfield/canfield/canfield.c
690
found[i] = NIL;
games/canfield/canfield/canfield.c
694
deck[i]->next = NIL;
games/canfield/canfield/canfield.c
703
deck[decksize-1]->next = NIL;
games/canfield/canfield/canfield.c
704
talon = NIL;
games/canfield/canfield/canfield.c
802
if (cp == NIL) {
games/canfield/canfield/canfield.c
846
if ((cp == stock) && (tableau[des] == NIL))
games/canfield/canfield/canfield.c
848
else if (tableau[des] == NIL)
games/canfield/canfield/canfield.c
849
if (stock == NIL &&
games/canfield/canfield/canfield.c
877
else if (talon != NIL) {
games/canfield/canfield/canfield.c
886
while (talon != NIL) {
games/canfield/canfield/canfield.c
964
ptr != NIL;
games/canfield/canfield/canfield.c
976
ptr != NIL;
lib/libz/deflate.c
1393
s->strstart - (IPos)MAX_DIST(s) : NIL;
lib/libz/deflate.c
168
s->head[s->hash_size - 1] = NIL; \
lib/libz/deflate.c
1874
hash_head = NIL;
lib/libz/deflate.c
1882
if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) {
lib/libz/deflate.c
192
*p = (Pos)(m >= wsize ? m - wsize : NIL);
lib/libz/deflate.c
1974
hash_head = NIL;
lib/libz/deflate.c
1984
if (hash_head != NIL && s->prev_length < s->max_lazy_match &&
lib/libz/deflate.c
199
*p = (Pos)(m >= wsize ? m - wsize : NIL);
sys/lib/libz/deflate.c
1393
s->strstart - (IPos)MAX_DIST(s) : NIL;
sys/lib/libz/deflate.c
168
s->head[s->hash_size - 1] = NIL; \
sys/lib/libz/deflate.c
1876
hash_head = NIL;
sys/lib/libz/deflate.c
1884
if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) {
sys/lib/libz/deflate.c
192
*p = (Pos)(m >= wsize ? m - wsize : NIL);
sys/lib/libz/deflate.c
1976
hash_head = NIL;
sys/lib/libz/deflate.c
1986
if (hash_head != NIL && s->prev_length < s->max_lazy_match &&
sys/lib/libz/deflate.c
199
*p = (Pos)(m >= wsize ? m - wsize : NIL);
usr.bin/awk/awkgram.y
129
{ --inloop; $$ = stat4(FOR, $3, NIL, $7, $10); }
usr.bin/awk/awkgram.y
177
pa_pat { $$ = stat2(PASTAT, $1, stat2(PRINT, rectonode(), NIL)); }
usr.bin/awk/awkgram.y
179
| pa_pat ',' opt_nl pa_pat { $$ = pa2stat($1, $4, stat2(PRINT, rectonode(), NIL)); }
usr.bin/awk/awkgram.y
181
| lbrace stmtlist '}' { $$ = stat2(PASTAT, NIL, $2); }
usr.bin/awk/awkgram.y
208
| ppattern MATCHOP reg_expr { $$ = op3($2, NIL, $1, (Node*)makedfa($3, 0)); free($3); }
usr.bin/awk/awkgram.y
211
$$ = op3($2, NIL, $1, (Node*)makedfa(strnode($3), 0));
usr.bin/awk/awkgram.y
236
| pattern MATCHOP reg_expr { $$ = op3($2, NIL, $1, (Node*)makedfa($3, 0)); free($3); }
usr.bin/awk/awkgram.y
239
$$ = op3($2, NIL, $1, (Node*)makedfa(strnode($3), 0));
usr.bin/awk/awkgram.y
286
{ $$ = op3(MATCH, NIL, rectonode(), (Node*)makedfa($1, 0)); free($1); }
usr.bin/awk/awkgram.y
308
| print prarg { $$ = stat3($1, $2, NIL, NIL); }
usr.bin/awk/awkgram.y
322
$$ = stat1(BREAK, NIL); }
usr.bin/awk/awkgram.y
324
$$ = stat1(CONTINUE, NIL); }
usr.bin/awk/awkgram.y
328
| EXIT st { $$ = stat1(EXIT, NIL); }
usr.bin/awk/awkgram.y
331
| if stmt { $$ = stat3(IF, $1, $2, NIL); }
usr.bin/awk/awkgram.y
335
$$ = stat1(NEXT, NIL); }
usr.bin/awk/awkgram.y
338
$$ = stat1(NEXTFILE, NIL); }
usr.bin/awk/awkgram.y
340
| RETURN st { $$ = stat1(RETURN, NIL); }
usr.bin/awk/awkgram.y
374
| CALL '(' ')' { $$ = op2(CALL, celltonode($1,CVAR), NIL); }
usr.bin/awk/awkgram.y
382
{ $$ = op5(GENSUB, NIL, (Node*)makedfa($3, 1), $5, $7, rectonode()); }
usr.bin/awk/awkgram.y
385
$$ = op5(GENSUB, NIL, (Node *)makedfa(strnode($3), 1), $5, $7, rectonode());
usr.bin/awk/awkgram.y
391
{ $$ = op5(GENSUB, NIL, (Node*)makedfa($3, 1), $5, $7, $9); }
usr.bin/awk/awkgram.y
394
$$ = op5(GENSUB, NIL, (Node *)makedfa(strnode($3),1), $5,$7,$9);
usr.bin/awk/awkgram.y
400
| GETLINE LT term { $$ = op3(GETLINE, NIL, itonp($2), $3); }
usr.bin/awk/awkgram.y
401
| GETLINE var { $$ = op3(GETLINE, $2, NIL, NIL); }
usr.bin/awk/awkgram.y
402
| GETLINE { $$ = op3(GETLINE, NIL, NIL, NIL); }
usr.bin/awk/awkgram.y
410
{ $$ = op3(MATCHFCN, NIL, $3, (Node*)makedfa($5, 1)); free($5); }
usr.bin/awk/awkgram.y
413
$$ = op3(MATCHFCN, NIL, $3, (Node*)makedfa(strnode($5), 1));
usr.bin/awk/awkgram.y
423
{ $$ = op4(SPLIT, $3, makearr($5), NIL, (Node*)STRING); } /* default */
usr.bin/awk/awkgram.y
427
{ $$ = op4($1, NIL, (Node*)makedfa($3, 1), $5, rectonode()); free($3); }
usr.bin/awk/awkgram.y
430
$$ = op4($1, NIL, (Node*)makedfa(strnode($3), 1), $5, rectonode());
usr.bin/awk/awkgram.y
435
{ $$ = op4($1, NIL, (Node*)makedfa($3, 1), $5, $7); free($3); }
usr.bin/awk/awkgram.y
438
$$ = op4($1, NIL, (Node*)makedfa(strnode($3), 1), $5, $7);
usr.bin/awk/awkgram.y
445
{ $$ = op3(SUBSTR, $3, $5, NIL); }
usr.bin/awk/b.c
1002
return (unary(op2(ALL, NIL, NIL)));
usr.bin/awk/b.c
1005
return (unary(op2(EMPTYRE, NIL, NIL)));
usr.bin/awk/b.c
1009
return (unary(op2(DOT, NIL, NIL)));
usr.bin/awk/b.c
1011
np = op2(CCL, NIL, (Node*) cclenter((const char *) rlxstr));
usr.bin/awk/b.c
1016
np = op2(NCCL, NIL, (Node *) cclenter((const char *) rlxstr));
usr.bin/awk/b.c
1022
return (unary(op2(CHAR, NIL, itonp(HAT))));
usr.bin/awk/b.c
1025
return (unary(op2(CHAR, NIL, NIL)));
usr.bin/awk/b.c
1032
return unary(op2(CCL, NIL, (Node *) cclenter("")));
usr.bin/awk/b.c
1055
return (concat(op2(CAT, op2(CCL, NIL, (Node *) cclenter("")),
usr.bin/awk/b.c
1075
return (unary(op2(STAR, np, NIL)));
usr.bin/awk/b.c
1078
return (unary(op2(PLUS, np, NIL)));
usr.bin/awk/b.c
1081
return (unary(op2(QUEST, np, NIL)));
usr.bin/awk/b.c
1084
return (unary(op2(ZERO, np, NIL)));
usr.bin/awk/b.c
237
p1 = op2(CAT, op2(STAR, op2(ALL, NIL, NIL), NIL), p);
usr.bin/awk/b.c
239
p1 = op2(CAT, p1, op2(FINAL, NIL, NIL));
usr.bin/awk/b.c
976
return(op2(EMPTYRE, NIL, NIL));
usr.bin/awk/b.c
997
np = op2(CHAR, NIL, itonp(rlxval));
usr.bin/lex/dfa.c
1030
duplist[1] = NIL;
usr.bin/lex/dfa.c
1031
dupfwd[numecs] = NIL;
usr.bin/lex/dfa.c
251
if ( nfaccnum != NIL ) \
usr.bin/lex/dfa.c
283
if ( nfaccnum != NIL || transchar[state] != SYM_EPSILON ) \
usr.bin/lex/dfa.c
414
duplist[i] = NIL;
usr.bin/lex/dfa.c
419
accset[i] = NIL;
usr.bin/lex/dfa.c
627
if (duplist[sym] == NIL) {
usr.bin/lex/dfa.c
690
duplist[sym] = NIL;
usr.bin/lex/ecs.c
143
for (i = fwd[cclm]; i != NIL && i <= llsiz; i = fwd[i]) {
usr.bin/lex/ecs.c
183
if (oldec != NIL)
usr.bin/lex/ecs.c
191
if (bck[cclm] != NIL || oldec != bck[cclm]) {
usr.bin/lex/ecs.c
192
bck[cclm] = NIL;
usr.bin/lex/ecs.c
193
fwd[oldec] = NIL;
usr.bin/lex/ecs.c
195
fwd[newec] = NIL;
usr.bin/lex/ecs.c
217
if (fwd[tch] != NIL)
usr.bin/lex/ecs.c
220
if (bck[tch] != NIL)
usr.bin/lex/ecs.c
223
fwd[tch] = NIL;
usr.bin/lex/ecs.c
224
bck[tch] = NIL;
usr.bin/lex/ecs.c
94
if (bck[i] == NIL) {
usr.bin/lex/ecs.c
96
for (j = fwd[i]; j != NIL; j = fwd[j])
usr.bin/lex/flexdef.h
190
#define NO_TRANSITION NIL
usr.bin/lex/main.c
1407
firstprot = NIL;
usr.bin/lex/main.c
300
ecgroup[1] = NIL;
usr.bin/lex/main.c
307
nextecm[csize] = NIL;
usr.bin/lex/nfa.c
127
if (anum != NIL)
usr.bin/lex/nfa.c
318
if (first == NIL)
usr.bin/lex/nfa.c
321
else if (last == NIL)
usr.bin/lex/nfa.c
475
if (first == NIL)
usr.bin/lex/nfa.c
478
else if (second == NIL)
usr.bin/lex/nfa.c
494
accptnum[finalst[first]] == NIL) {
usr.bin/lex/nfa.c
498
accptnum[finalst[second]] == NIL) {
usr.bin/lex/nfa.c
628
accptnum[lastnfa] = NIL;
usr.bin/lex/tblcmp.c
124
for (i = firstprot; i != NIL; i = protnext[i])
usr.bin/lex/tblcmp.c
142
if (firstprot != NIL) {
usr.bin/lex/tblcmp.c
162
for (i = minprot; i != NIL; i = protnext[i]) {
usr.bin/lex/tblcmp.c
453
tecbck[1] = NIL;
usr.bin/lex/tblcmp.c
460
tecfwd[numecs] = NIL;
usr.bin/lex/tblcmp.c
672
protnext[lastprot] = NIL;
usr.bin/lex/tblcmp.c
678
if (firstprot != NIL)
usr.bin/lex/tblcmp.c
759
if (protnext[qelm] != NIL)
usr.bin/lex/tblcmp.c
762
protprev[qelm] = NIL;