Home
last modified time | relevance | path

Searched refs:OJUMP (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/cmd/oawk/
H A Dawk.def111 #define OJUMP 3
142 #define isjump(n) (n->ctype == OJUMP)
143 #define isexit(n) (n->ctype == OJUMP && n->csub == JEXIT)
144 #define isbreak(n) (n->ctype == OJUMP && n->csub == JBREAK)
145 #define iscont(n) (n->ctype == OJUMP && n->csub == JCONT)
146 #define isnext(n) (n->ctype == OJUMP && n->csub == JNEXT)
H A Drun.c64 static CELL breakcell ={ OJUMP, JBREAK, 0, 0, 0.0, NUM, 0 };
66 static CELL contcell ={ OJUMP, JCONT, 0, 0, 0.0, NUM, 0 };
68 static CELL nextcell ={ OJUMP, JNEXT, 0, 0, 0.0, NUM, 0 };
70 static CELL exitcell ={ OJUMP, JEXIT, 0, 0, 0.0, NUM, 0 };
/illumos-gate/usr/src/cmd/awk/
H A Dawk.h216 #define OJUMP 3 macro
265 #define isjump(n) ((n)->ctype == OJUMP)
H A Drun.c79 static Cell breakcell = { OJUMP, JBREAK, NULL, NULL, 0.0, NUM, NULL };
81 static Cell contcell = { OJUMP, JCONT, NULL, NULL, 0.0, NUM, NULL };
83 static Cell nextcell = { OJUMP, JNEXT, NULL, NULL, 0.0, NUM, NULL };
85 static Cell nextfilecell = { OJUMP, JNEXTFILE, NULL, NULL, 0.0,
88 static Cell exitcell = { OJUMP, JEXIT, NULL, NULL, 0.0, NUM, NULL };
90 static Cell retcell = { OJUMP, JRET, NULL, NULL, 0.0, NUM, NULL };