Home
last modified time | relevance | path

Searched refs:maxrules (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/contrib/byacc/
H A Dreader.c54 static int maxrules; variable
1753 maxrules = 100; in initialize_grammar()
1755 plhs = TMALLOC(bucket *, maxrules); in initialize_grammar()
1762 rprec = TMALLOC(Value_t, maxrules); in initialize_grammar()
1769 rassoc = TMALLOC(Assoc_t, maxrules); in initialize_grammar()
1788 maxrules += 100; in expand_rules()
1790 plhs = TREALLOC(bucket *, plhs, maxrules); in expand_rules()
1793 rprec = TREALLOC(Value_t, rprec, maxrules); in expand_rules()
1796 rassoc = TREALLOC(Assoc_t, rassoc, maxrules); in expand_rules()
2289 if (nrules >= maxrules) in start_rule()
[all …]
/freebsd-12.1/usr.sbin/cxgbetool/
H A Dcxgbetool.c3389 int lno, maxrules, rc; in parse_offload_policy() local
3409 maxrules = 0; in parse_offload_policy()
3421 if (op->nrules == maxrules) { in parse_offload_policy()
3422 maxrules += REALLOC_STRIDE; in parse_offload_policy()
3424 maxrules * sizeof(struct offload_rule)); in parse_offload_policy()
3427 maxrules); in parse_offload_policy()