Home
last modified time | relevance | path

Searched refs:NNULL (Results 1 – 6 of 6) sorted by relevance

/illumos-gate/usr/src/cmd/awk_xpg4/
H A Dawk.y175 $$ = 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;
249 $$ = NNULL;
440 $$ = node(CONTINUE, NNULL, NNULL);
443 $$ = node(BREAK, NNULL, NNULL);
[all …]
H A Dawk3.c385 np->n_alink = NNULL; in emptynode()
456 np = NNULL; in vlookup()
503 prevp = NNULL; in delsymtab()
572 wp = NNULL; in execute()
583 if (np == NNULL) { in execute()
639 freelist = NNULL; in freetemps()
659 wp = NNULL; in action()
800 np->n_alink = NNULL; in delarray()
1842 *npp = NNULL; in getlist()
1965 np = NNULL; in s_forin()
[all …]
H A Dawk4.c375 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()
618 if (asortfunc == NNULL) { in f_asort()
620 asortfunc = node(CALLUFUNC, NNULL, in f_asort()
621 node(COMMA, NNULL, in f_asort()
637 *npp = NNULL; in f_asort()
646 } while (*npp++ != NNULL); in f_asort()
659 if (np == NNULL) in nargs()
[all …]
H A Dawk2.c411 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 Dawk1.c272 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()
1202 curnode == NNULL ? 0 : curnode->n_lineno); in awkierr()
H A Dawk.h54 #define NNULL ((NODE *)0) macro