Home
last modified time | relevance | path

Searched refs:ruleno (Results 1 – 6 of 6) sorted by relevance

/dragonfly/contrib/byacc/
H A Dmkpar.c119 int ruleno = LAruleno[i]; in add_reductions() local
125 actions = add_reduce(actions, ruleno, j); in add_reductions()
133 int ruleno, in add_reduce() argument
158 temp->number = (Value_t)ruleno; in add_reduce()
159 temp->prec = rprec[ruleno]; in add_reduce()
161 temp->assoc = rassoc[ruleno]; in add_reduce()
348 int count, ruleno; in sole_reduction() local
352 ruleno = 0; in sole_reduction()
359 if (ruleno > 0 && p->number != ruleno) in sole_reduction()
363 ruleno = p->number; in sole_reduction()
[all …]
H A Dgraph.c6 static void graph_LA(int ruleno);
92 graph_LA(int ruleno) in graph_LA() argument
98 if (ruleno == LAruleno[larno]) in graph_LA()
H A Dclosure.c109 unsigned ruleno; in closure() local
139 ruleno = 0; in closure()
152 itemno = rrhs[ruleno + i]; in closure()
161 ruleno += BITS_PER_WORD; in closure()
H A Dlalr.c14 static void add_lookback_edge(int stateno, int ruleno, int gotono);
441 add_lookback_edge(int stateno, int ruleno, int gotono) in add_lookback_edge() argument
452 if (LAruleno[i] == ruleno) in add_lookback_edge()
/dragonfly/usr.sbin/ppp/
H A Dfilter.c248 int action, family, ruleno, val, width; in filter_Parse() local
250 ruleno = strtol(*argv, &wp, 0); in filter_Parse()
251 if (*argv == wp || ruleno >= MAXFILTERS) { in filter_Parse()
255 if (ruleno < 0) { in filter_Parse()
256 for (ruleno = 0; ruleno < MAXFILTERS; ruleno++) { in filter_Parse()
263 ofp += ruleno; in filter_Parse()
275 if (val <= ruleno) { in filter_Parse()
277 ruleno); in filter_Parse()
/dragonfly/games/atc/
H A Dinput.c228 push(int ruleno, int ch) in push() argument
232 sprintf(T_STR, st[T_STATE].rule[ruleno].str, tval); in push()
233 T_RULE = ruleno; in push()
235 newstate = st[T_STATE].rule[ruleno].to_state; in push()