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

/freebsd-13-stable/contrib/one-true-awk/
H A Dawk.h80 uschar csub; /* CCON, CTEMP, CFLD, etc. */ member in struct:Cell
165 /* Cell subtypes: csub */
199 #define isexit(n) ((n)->csub == JEXIT)
200 #define isbreak(n) ((n)->csub == JBREAK)
201 #define iscont(n) ((n)->csub == JCONT)
202 #define isnext(n) ((n)->csub == JNEXT || (n)->csub == JNEXTFILE)
203 #define isret(n) ((n)->csub == JRET)
210 #define istrue(n) ((n)->csub == BTRUE)
211 #define istemp(n) ((n)->csub
[all...]
H A Dparse.c173 a->csub = b;
H A Drun.c48 if (p->ctype == OCELL && (p->csub < CUNK || p->csub > CFREE)) {
49 WARNING("bad csub %d in Cell %d %s",
50 p->csub, p->ctype, p->sval);
294 if (t->csub == CCOPY) {
297 t->csub = CTEMP;
307 t->csub = CTEMP;
309 } else if (t == y && t->csub == CCOPY) {
310 t->csub = CTEMP;
335 y->csub
[all...]
H A Dawkgram.y458 return isvalue(p) && ((Cell *) (p->narg[0]))->csub == CCON;
H A Dtran.c245 p->csub = CUNK;

Completed in 107 milliseconds