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

/illumos-gate/usr/src/cmd/oawk/
H A Dawk.def63 char csub; /* subtype of ctype */
145 #define isexit(n) (n->ctype == OJUMP && n->csub == JEXIT)
146 #define isbreak(n) (n->ctype == OJUMP && n->csub == JBREAK)
147 #define iscont(n) (n->ctype == OJUMP && n->csub == JCONT)
148 #define isnext(n) (n->ctype == OJUMP && n->csub == JNEXT)
151 #define istrue(n) (n->ctype == OBOOL && n->csub == BTRUE)
152 #define istemp(n) (n->ctype == OCELL && n->csub == CTEMP)
153 #define isfld(n) (!donefld && n->csub==CFLD && n->ctype==OCELL && \
155 #define isrec(n) (donefld && n->csub==CFLD && n->ctype==OCELL && \
H A Drun.c203 y->csub = CVAR;
352 x->csub = CFLD;
1169 x->csub = a->subtype;
/illumos-gate/usr/src/cmd/awk/
H A Dawk.h100 uchar csub; /* CCON, CTEMP, CFLD, etc. */ member in struct:Cell
185 /* Cell subtypes: csub */
231 #define isexit(n) ((n)->csub == JEXIT)
232 #define isbreak(n) ((n)->csub == JBREAK)
233 #define iscont(n) ((n)->csub == JCONT)
234 #define isnext(n) ((n)->csub == JNEXT)
235 #define isret(n) ((n)->csub == JRET)
240 #define istrue(n) ((n)->csub == BTRUE)
241 #define istemp(n) ((n)->csub == CTEMP)
H A Dparse.c192 a->csub = b;
H A Drun.c260 if (t->csub == CCOPY) {
263 t->csub = CTEMP;
272 t->csub = CTEMP;
295 y->csub = CCOPY; /* prevents freeing until call is over */
461 z->csub = CVAR;
703 x->csub = CFLD;
H A Dawk.g.y451 return p->ntype == NVALUE && ((Cell *) (p->narg[0]))->csub == CCON;
H A Dlib.c354 newfld[i].csub = CFLD;
H A Dtran.c264 p->csub = 0;

Completed in 72 milliseconds