Home
last modified time | relevance | path

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

/ndk/sources/host-tools/nawk-20071023/
Dawk.h80 uschar csub; /* CCON, CTEMP, CFLD, etc. */ member
185 #define isexit(n) ((n)->csub == JEXIT)
186 #define isbreak(n) ((n)->csub == JBREAK)
187 #define iscont(n) ((n)->csub == JCONT)
188 #define isnext(n) ((n)->csub == JNEXT || (n)->csub == JNEXTFILE)
189 #define isret(n) ((n)->csub == JRET)
196 #define istrue(n) ((n)->csub == BTRUE)
197 #define istemp(n) ((n)->csub == CTEMP)
Drun.c288 if (t->csub == CCOPY) { in call()
291 t->csub = CTEMP; in call()
301 t->csub = CTEMP; in call()
303 } else if (t == y && t->csub == CCOPY) { in call()
304 t->csub = CTEMP; in call()
326 y->csub = CCOPY; /* prevents freeing until call is over */ in copycell()
485 z->csub = CVAR; in array()
727 x->csub = CFLD; in indirect()
Dparse.c173 a->csub = b; in celltonode()
Dtran.c225 p->csub = CUNK; in setsymtab()
Dawkgram.y458 return isvalue(p) && ((Cell *) (p->narg[0]))->csub == CCON;