Lines Matching refs:bracount

1742       if (!read_number(&p, ptrend, cb->bracount, MAX_GROUP_NUMBER, ERR61, &s,  in PRIV()
1760 if (!read_number(&ptr, ptrend, cb->bracount, MAX_GROUP_NUMBER, ERR61, &s, in PRIV()
1808 (s < 10 || oldptr[-1] >= CHAR_8 || s <= (int)cb->bracount)) in PRIV()
3193 if (read_number(&p, ptrend, cb->bracount, MAX_GROUP_NUMBER, ERR61, &i, in parse_regex()
3776 if (cb->bracount >= MAX_GROUP_NUMBER) in parse_regex()
3781 cb->bracount++; in parse_regex()
3782 *parsed_pattern++ = META_CAPTURE | cb->bracount; in parse_regex()
4029 top_nest->reset_group = (uint16_t)cb->bracount; in parse_regex()
4030 top_nest->max_group = (uint16_t)cb->bracount; in parse_regex()
4204 (IS_DIGIT(*ptr))? -1:(int)(cb->bracount), /* + and - are relative */ in parse_regex()
4394 if (read_number(&ptr, ptrend, cb->bracount, MAX_GROUP_NUMBER, ERR61, &i, in parse_regex()
4626 if (cb->bracount >= MAX_GROUP_NUMBER) in parse_regex()
4631 cb->bracount++; in parse_regex()
4632 *parsed_pattern++ = META_CAPTURE | cb->bracount; in parse_regex()
4662 if (ng->number == cb->bracount) break; in parse_regex()
4671 else if (ng->number == cb->bracount) in parse_regex()
4707 cb->named_groups[cb->names_found].number = cb->bracount; in parse_regex()
4723 if (cb->bracount > top_nest->max_group) in parse_regex()
4724 top_nest->max_group = (uint16_t)cb->bracount; in parse_regex()
4725 cb->bracount = top_nest->reset_group; in parse_regex()
4740 top_nest->max_group > cb->bracount) in parse_regex()
4741 cb->bracount = top_nest->max_group; in parse_regex()
6389 if (meta != META_COND_RNUMBER || groupnumber > cb->bracount) in compile_branch()
6447 if (groupnumber > cb->bracount) in compile_branch()
7772 if (meta_arg > cb->bracount) in compile_branch()
7811 if (meta_arg > cb->bracount) in compile_branch()
9371 if (group > cb->bracount) in get_branchlength()
9881 cb.bracount = 0; in pcre2_compile()
10168 if (cb.bracount >= GROUPINFO_DEFAULT_SIZE) in pcre2_compile()
10171 (cb.bracount + 1)*sizeof(uint32_t), ccontext->memctl.memory_data); in pcre2_compile()
10179 memset(cb.groupinfo, 0, (cb.bracount + 1) * sizeof(uint32_t)); in pcre2_compile()
10203 fprintf(stderr, "+++Captures: %d\n", cb.bracount); in pcre2_compile()
10329 re->top_bracket = cb.bracount; in pcre2_compile()