Searched refs:maxrules (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/byacc/ |
H A D | reader.c | 91 static int maxrules; variable 2161 maxrules = 100; in initialize_grammar() 2163 plhs = TMALLOC(bucket *, maxrules); in initialize_grammar() 2170 rprec = TMALLOC(Value_t, maxrules); in initialize_grammar() 2177 rassoc = TMALLOC(Assoc_t, maxrules); in initialize_grammar() 2196 maxrules += 100; in expand_rules() 2198 plhs = TREALLOC(bucket *, plhs, maxrules); in expand_rules() 2201 rprec = TREALLOC(Value_t, rprec, maxrules); in expand_rules() 2204 rassoc = TREALLOC(Assoc_t, rassoc, maxrules); in expand_rules() 2707 if (nrules >= maxrules) in start_rule() [all …]
|
/freebsd/usr.sbin/cxgbetool/ |
H A D | cxgbetool.c | 3371 int lno, maxrules, rc; in parse_offload_policy() local 3391 maxrules = 0; in parse_offload_policy() 3403 if (op->nrules == maxrules) { in parse_offload_policy() 3404 maxrules += REALLOC_STRIDE; in parse_offload_policy() 3406 maxrules * sizeof(struct offload_rule)); in parse_offload_policy() 3409 maxrules); in parse_offload_policy()
|