Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/byacc/
H A Dreader.c54 static int maxrules; variable
1907 maxrules = 100; in initialize_grammar()
1909 plhs = TMALLOC(bucket *, maxrules); in initialize_grammar()
1916 rprec = TMALLOC(Value_t, maxrules); in initialize_grammar()
1923 rassoc = TMALLOC(Assoc_t, maxrules); in initialize_grammar()
1942 maxrules += 100; in expand_rules()
1944 plhs = TREALLOC(bucket *, plhs, maxrules); in expand_rules()
1947 rprec = TREALLOC(Value_t, rprec, maxrules); in expand_rules()
1950 rassoc = TREALLOC(Assoc_t, rassoc, maxrules); in expand_rules()
2450 if (nrules >= maxrules) in start_rule()
[all …]
/freebsd-13.1/usr.sbin/cxgbetool/
H A Dcxgbetool.c3407 int lno, maxrules, rc; in parse_offload_policy() local
3427 maxrules = 0; in parse_offload_policy()
3439 if (op->nrules == maxrules) { in parse_offload_policy()
3440 maxrules += REALLOC_STRIDE; in parse_offload_policy()
3442 maxrules * sizeof(struct offload_rule)); in parse_offload_policy()
3445 maxrules); in parse_offload_policy()