Searched refs:NNULL (Results 1 – 6 of 6) sorted by relevance
/illumos-gate/usr/src/cmd/awk_xpg4/ |
H A D | awk.y | 157 if ($1 != NNULL) { 158 if (yytree != NNULL) 171 $$ = node(PACT, NNULL, $2); 174 $$ = node(PACT, $1, node(PRINT, NNULL, NNULL)); 183 $$ = NNULL; 190 $$ = NNULL; 204 $$ = node(BEGIN, NNULL, NNULL); 209 $$ = node(END, NNULL, NNULL); 220 $$ = NNULL; 233 $$ = NNULL; [all …]
|
H A D | awk3.c | 385 np->n_alink = NNULL; in emptynode() 450 while (np != NNULL) { in vlookup() 456 np = NNULL; in vlookup() 503 prevp = NNULL; in delsymtab() 504 for (rnp = symtab[h]; rnp != NNULL; rnp = rnp->n_next) { in delsymtab() 520 if (prevp == NNULL) in delsymtab() 566 while (wp != NNULL) { in execute() 572 wp = NNULL; in execute() 583 if (np == NNULL) { in execute() 613 if (freelist != NNULL) in execute() [all …]
|
H A D | awk4.c | 375 sep = NNULL; in f_split() 400 if (sep != NNULL) { in f_split() 441 if (sep != NNULL) { in f_split() 597 if ((funcnp = vlookup(funcname, 1)) == NNULL in f_asort() 605 for (tnp = array->n_alink; tnp != NNULL; tnp = tnp->n_alink) in f_asort() 618 if (asortfunc == NNULL) { in f_asort() 620 asortfunc = node(CALLUFUNC, NNULL, in f_asort() 621 node(COMMA, NNULL, in f_asort() 635 for (tnp = array->n_alink; tnp != NNULL; tnp = tnp->n_alink) in f_asort() 637 *npp = NNULL; in f_asort() [all …]
|
H A D | awk2.c | 411 np = NNULL; in dobegin() 413 while ((knp = symwalk(&nbuck, &np)) != NNULL) in dobegin() 495 if (np->n_left == NNULL) in s_print() 502 while ((np = getlist(&listp)) != NNULL) { in s_print() 560 if (np->n_left == NNULL) { in f_getline() 593 if (np == NNULL) { in openfile() 880 if ((np = getlist(npp)) == NNULL) in nextarg()
|
H A D | awk1.c | 272 field0 = node(FIELD, const0, NNULL); in awkvarinit() 364 while ((formal = getlist(&np)) != NNULL) in uexit() 1061 np->n_left = np->n_right = NNULL; in renode() 1201 curnode == NNULL ? 0 : curnode->n_lineno); in awkierr()
|
H A D | awk.h | 57 #define NNULL ((NODE *)0) macro
|