Home
last modified time | relevance | path

Searched refs:csub (Results 1 – 5 of 5) sorted by relevance

/dragonfly/contrib/awk/
HDawk.h99 uschar csub; /* CCON, CTEMP, CFLD, etc. */ member
213 #define isexit(n) ((n)->csub == JEXIT)
214 #define isbreak(n) ((n)->csub == JBREAK)
215 #define iscont(n) ((n)->csub == JCONT)
216 #define isnext(n) ((n)->csub == JNEXT || (n)->csub == JNEXTFILE)
217 #define isret(n) ((n)->csub == JRET)
224 #define istrue(n) ((n)->csub == BTRUE)
225 #define istemp(n) ((n)->csub == CTEMP)
HDrun.c51 if (p->ctype == OCELL && (p->csub < CUNK || p->csub > CFREE)) { in tempfree()
53 p->csub, p->ctype, p->sval); in tempfree()
295 if (t->csub == CCOPY) { in call()
298 t->csub = CTEMP; in call()
308 t->csub = CTEMP; in call()
310 } else if (t == y && t->csub == CCOPY) { in call()
311 t->csub = CTEMP; in call()
336 y->csub = CCOPY; /* prevents freeing until call is over */ in copycell()
528 z->csub = CVAR; in array()
973 x->csub = CFLD; in indirect()
HDparse.c173 a->csub = b; in celltonode()
HDawkgram.y469 return isvalue(p) && ((Cell *) (p->narg[0]))->csub == CCON;
HDtran.c239 p->csub = CUNK; in setsymtab()