Searched refs:NNULL (Results 1 – 6 of 6) sorted by relevance
/titanic_44/usr/src/cmd/awk_xpg4/ |
H A D | awk.y | 158 if ($1 != NNULL) { 159 if (yytree != NNULL) 172 $$ = node(PACT, NNULL, $2); 175 $$ = node(PACT, $1, node(PRINT, NNULL, NNULL)); 184 $$ = NNULL; 191 $$ = NNULL; 205 $$ = node(BEGIN, NNULL, NNULL); 210 $$ = node(END, NNULL, NNULL); 221 $$ = NNULL; 234 $$ = NNULL; [all …]
|
H A D | awk3.c | 387 np->n_alink = NNULL; in emptynode() 452 while (np != NNULL) { in vlookup() 458 np = NNULL; in vlookup() 505 prevp = NNULL; in delsymtab() 506 for (rnp = symtab[h]; rnp != NNULL; rnp = rnp->n_next) { in delsymtab() 522 if (prevp == NNULL) in delsymtab() 568 while (wp != NNULL) { in execute() 574 wp = NNULL; in execute() 585 if (np == NNULL) { in execute() 615 if (freelist != NNULL) in execute() [all …]
|
H A D | awk4.c | 377 sep = NNULL; in f_split() 401 if (sep != NNULL) { in f_split() 442 if (sep != NNULL) { in f_split() 598 if ((funcnp = vlookup(funcname, 1)) == NNULL in f_asort() 606 for (tnp = array->n_alink; tnp != NNULL; tnp = tnp->n_alink) in f_asort() 619 if (asortfunc == NNULL) { in f_asort() 621 asortfunc = node(CALLUFUNC, NNULL, in f_asort() 622 node(COMMA, NNULL, in f_asort() 636 for (tnp = array->n_alink; tnp != NNULL; tnp = tnp->n_alink) in f_asort() 638 *npp = NNULL; in f_asort() [all …]
|
H A D | awk2.c | 413 np = NNULL; in dobegin() 415 while ((knp = symwalk(&nbuck, &np)) != NNULL) in dobegin() 497 if (np->n_left == NNULL) in s_print() 504 while ((np = getlist(&listp)) != NNULL) { in s_print() 562 if (np->n_left == NNULL) { in f_getline() 595 if (np == NNULL) { in openfile() 882 if ((np = getlist(npp)) == NNULL) in nextarg()
|
H A D | awk1.c | 274 field0 = node(FIELD, const0, NNULL); in awkvarinit() 366 while ((formal = getlist(&np)) != NNULL) in uexit() 1066 np->n_left = np->n_right = NNULL; in renode() 1206 curnode == NNULL ? 0 : curnode->n_lineno); in awkierr()
|
H A D | awk.h | 56 #define NNULL ((NODE *)0) macro
|