/freebsd/contrib/flex/src/ |
H A D | ecs.c | 90 if (bck[i] == NIL) { in cre8ecs() 92 for (j = fwd[i]; j != NIL; j = fwd[j]) in cre8ecs() 138 …for (i = fwd[cclm]; i != NIL && i <= llsiz; i = fwd[i]) { /* look for the symbol in the character … in mkeccl() 175 if (oldec != NIL) in mkeccl() 183 if (bck[cclm] != NIL || oldec != bck[cclm]) { in mkeccl() 184 bck[cclm] = NIL; in mkeccl() 185 fwd[oldec] = NIL; in mkeccl() 188 fwd[newec] = NIL; in mkeccl() 208 if (fwd[tch] != NIL) in mkechar() 211 if (bck[tch] != NIL) in mkechar() [all …]
|
H A D | nfa.c | 120 if (anum != NIL) in dumpnfa() 312 if (first == NIL) in link_machines() 315 else if (last == NIL) in link_machines() 464 if (first == NIL) in mkor() 467 else if (second == NIL) in mkor() 481 accptnum[finalst[first]] == NIL) { in mkor() 487 accptnum[finalst[second]] == NIL) { in mkor() 621 accptnum[lastnfa] = NIL; in mkstate()
|
H A D | tblcmp.c | 118 for (i = firstprot; i != NIL; i = protnext[i]) in bldtbl() 136 if (firstprot != NIL) { in bldtbl() 154 for (i = minprot; i != NIL; i = protnext[i]) { in bldtbl() 435 tecbck[1] = NIL; in inittbl() 442 tecfwd[numecs] = NIL; in inittbl() 648 protnext[lastprot] = NIL; in mkprot() 656 if (firstprot != NIL) in mkprot() 735 if (protnext[qelm] != NIL) in mv2front() 738 protprev[qelm] = NIL; in mv2front()
|
H A D | dfa.c | 247 if ( nfaccnum != NIL ) \ in epsclosure() 279 if ( nfaccnum != NIL || transchar[state] != SYM_EPSILON ) \ in epsclosure() 410 duplist[i] = NIL; in ntod() 415 accset[i] = NIL; in ntod() 616 if (duplist[sym] == NIL) { in ntod() 679 duplist[sym] = NIL; in ntod() 1018 duplist[1] = NIL; in sympartition() 1019 dupfwd[numecs] = NIL; in sympartition()
|
H A D | flexdef.h | 182 #define NIL 0 macro 185 #define NO_TRANSITION NIL
|
H A D | main.c | 295 ecgroup[1] = NIL; in check_options() 302 nextecm[csize] = NIL; in check_options() 1454 firstprot = NIL; in flexinit()
|
/freebsd/contrib/one-true-awk/ |
H A D | awkgram.y | 128 { --inloop; $$ = stat4(FOR, $3, NIL, $7, $10); } 176 pa_pat { $$ = stat2(PASTAT, $1, stat2(PRINT, rectonode(), NIL)); } 178 | pa_pat ',' opt_nl pa_pat { $$ = pa2stat($1, $4, stat2(PRINT, rectonode(), NIL)); } 180 | lbrace stmtlist '}' { $$ = stat2(PASTAT, NIL, $2); } 207 | ppattern MATCHOP reg_expr { $$ = op3($2, NIL, $1, (Node*)makedfa($3, 0)); free($3); } 210 $$ = op3($2, NIL, $1, (Node*)makedfa(strnode($3), 0)); 235 | pattern MATCHOP reg_expr { $$ = op3($2, NIL, $1, (Node*)makedfa($3, 0)); free($3); } 238 $$ = op3($2, NIL, $1, (Node*)makedfa(strnode($3), 0)); 285 { $$ = op3(MATCH, NIL, rectonode(), (Node*)makedfa($1, 0)); free($1); } 307 | print prarg { $$ = stat3($1, $2, NIL, NIL); } [all …]
|
H A D | b.c | 233 p1 = op2(CAT, op2(STAR, op2(ALL, NIL, NIL), NIL), p); in mkdfa() 235 p1 = op2(CAT, p1, op2(FINAL, NIL, NIL)); in mkdfa() 973 return(op2(EMPTYRE, NIL, NIL)); in reparse() 994 np = op2(CHAR, NIL, itonp(rlxval)); in primary() 999 return (unary(op2(ALL, NIL, NIL))); in primary() 1002 return (unary(op2(EMPTYRE, NIL, NIL))); in primary() 1006 return (unary(op2(DOT, NIL, NIL))); in primary() 1008 np = op2(CCL, NIL, (Node*) cclenter((const char *) rlxstr)); in primary() 1013 np = op2(NCCL, NIL, (Node *) cclenter((const char *) rlxstr)); in primary() 1019 return (unary(op2(CHAR, NIL, itonp(HAT)))); in primary() [all …]
|
H A D | awk.h | 177 #define NIL ((Node *) 0) macro
|
/freebsd/libexec/talkd/ |
H A D | table.c | 55 #define NIL ((TABLE_ENTRY *)0) macro 70 static TABLE_ENTRY *table = NIL; 86 for (ptr = table; ptr != NIL; ptr = next) { in find_match() 124 for (ptr = table; ptr != NIL; ptr = next) { in find_request() 160 if (ptr == NIL) { in insert_table() 167 if (ptr->next != NIL) in insert_table() 169 ptr->last = NIL; in insert_table() 198 for (ptr = table; ptr != NIL; ptr = ptr->next) { in delete_invite() 204 if (ptr != NIL) { in delete_invite() 222 else if (ptr->last != NIL) in delete() [all …]
|
/freebsd/tools/build/make_check/ |
H A D | Makefile | 10 BAR${NIL}= ${FOO} 22 NIL= macro 79 @echo EMPTY ${NIL:=foo} LHS | \
|
/freebsd/sbin/rcorder/ |
H A D | sprite.h | 91 #define NIL ~0 macro
|
/freebsd/contrib/libcbor/test/ |
H A D | stream_expectations.h | 51 NIL, enumerator
|
H A D | stream_expectations.c | 261 assertions_queue[queue_size++] = (struct test_assertion){.expectation = NIL}; in assert_nil() 276 assert_true(current().expectation == NIL); in null_callback()
|
/freebsd/sys/contrib/zlib/ |
H A D | deflate.c | 85 #define NIL 0 macro 172 s->head[s->hash_size - 1] = NIL; \ 196 *p = (Pos)(m >= wsize ? m - wsize : NIL); in slide_hash() 203 *p = (Pos)(m >= wsize ? m - wsize : NIL); in slide_hash() 1356 s->strstart - (IPos)MAX_DIST(s) : NIL; in longest_match() 1834 hash_head = NIL; in deflate_fast() 1842 if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) { in deflate_fast() 1934 hash_head = NIL; in deflate_slow() 1944 if (hash_head != NIL && s->prev_length < s->max_lazy_match && in deflate_slow()
|
/freebsd/contrib/libpcap/msdos/ |
H A D | pkt_rx1.s | 124 @skip: xor di, di ; return ES:DI = NIL pointer
|
H A D | pkt_rx0.asm | 164 @skip: xor di, di ; return ES:DI = NIL pointer
|
/freebsd/contrib/netbsd-tests/lib/libc/regex/data/att/ |
H A D | basic.dat | 61 BE [[.NIL.]] NULL ECOLLATE
|
/freebsd/usr.bin/vgrind/ |
H A D | vgrindefs.src | 46 max min mod new NIL nil noresult not notin od of or procedure public\
|
/freebsd/contrib/ntp/ |
H A D | CommitLog-4.1.0 | 2950 mmap's NIL offset. 3812 * ntptrace/ntptrace.c (ReceiveBuf): addserver() can return NIL. 5262 NIL.
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | images | 1807 #>>>>&8 ubelong x \b, LAST CHAR+NIL %8.8x
|
/freebsd/crypto/heimdal/lib/wind/ |
H A D | NormalizationTest.txt | 4065 B2D0;B2D0;1102 1175 11AF;B2D0;1102 1175 11AF; # (닐; 닐; 닐; 닐; 닐; ) HANGUL SYLLABLE NIL
|