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

/freebsd-10.1-release/contrib/one-true-awk/
H A Dawk.h80 uschar csub; /* CCON, CTEMP, CFLD, etc. */ member in struct:Cell
151 /* Cell subtypes: csub */
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
[all...]
H A Dparse.c173 a->csub = b;
H A Drun.c46 if (p->ctype == OCELL && (p->csub < CUNK || p->csub > CFREE)) {
47 WARNING("bad csub %d in Cell %d %s",
48 p->csub, p->ctype, p->sval);
292 if (t->csub == CCOPY) {
295 t->csub = CTEMP;
305 t->csub = CTEMP;
307 } else if (t == y && t->csub == CCOPY) {
308 t->csub = CTEMP;
330 y->csub
[all...]
H A Dawkgram.y458 return isvalue(p) && ((Cell *) (p->narg[0]))->csub == CCON;
H A Dtran.c225 p->csub = CUNK;

Completed in 63 milliseconds