Searched refs:OJUMP (Results 1 – 4 of 4) sorted by relevance
/titanic_41/usr/src/cmd/oawk/ |
H A D | awk.def | 113 #define OJUMP 3 144 #define isjump(n) (n->ctype == OJUMP) 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)
|
H A D | run.c | 64 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 };
|
/titanic_41/usr/src/cmd/awk/ |
H A D | awk.h | 183 #define OJUMP 3 macro 230 #define isjump(n) ((n)->ctype == OJUMP)
|
H A D | run.c | 62 static Cell breakcell = { OJUMP, JBREAK, 0, 0, 0.0, NUM }; 64 static Cell contcell = { OJUMP, JCONT, 0, 0, 0.0, NUM }; 66 static Cell nextcell = { OJUMP, JNEXT, 0, 0, 0.0, NUM }; 68 static Cell exitcell = { OJUMP, JEXIT, 0, 0, 0.0, NUM }; 70 static Cell retcell = { OJUMP, JRET, 0, 0, 0.0, NUM };
|