Home
last modified time | relevance | path

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

/titanic_44/usr/src/cmd/oawk/
H A Dawk.def113 #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 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 };
/titanic_44/usr/src/cmd/awk/
H A Dawk.h183 #define OJUMP 3 macro
230 #define isjump(n) ((n)->ctype == OJUMP)
H A Drun.c62 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 };