Lines Matching refs:bracount

1723       if (!read_number(&p, ptrend, cb->bracount, MAX_GROUP_NUMBER, ERR61, &s,  in PRIV()
1741 if (!read_number(&ptr, ptrend, cb->bracount, MAX_GROUP_NUMBER, ERR61, &s, in PRIV()
1786 if (s < 10 || oldptr[-1] >= CHAR_8 || s <= (int)cb->bracount) in PRIV()
3087 if (read_number(&p, ptrend, cb->bracount, MAX_GROUP_NUMBER, ERR61, &i, in parse_regex()
3670 if (cb->bracount >= MAX_GROUP_NUMBER) in parse_regex()
3675 cb->bracount++; in parse_regex()
3676 *parsed_pattern++ = META_CAPTURE | cb->bracount; in parse_regex()
3923 top_nest->reset_group = (uint16_t)cb->bracount; in parse_regex()
3924 top_nest->max_group = (uint16_t)cb->bracount; in parse_regex()
4098 (IS_DIGIT(*ptr))? -1:(int)(cb->bracount), /* + and - are relative */ in parse_regex()
4288 if (read_number(&ptr, ptrend, cb->bracount, MAX_GROUP_NUMBER, ERR61, &i, in parse_regex()
4519 if (cb->bracount >= MAX_GROUP_NUMBER) in parse_regex()
4524 cb->bracount++; in parse_regex()
4525 *parsed_pattern++ = META_CAPTURE | cb->bracount; in parse_regex()
4555 if (ng->number == cb->bracount) break; in parse_regex()
4564 else if (ng->number == cb->bracount) in parse_regex()
4600 cb->named_groups[cb->names_found].number = cb->bracount; in parse_regex()
4616 if (cb->bracount > top_nest->max_group) in parse_regex()
4617 top_nest->max_group = (uint16_t)cb->bracount; in parse_regex()
4618 cb->bracount = top_nest->reset_group; in parse_regex()
4633 top_nest->max_group > cb->bracount) in parse_regex()
4634 cb->bracount = top_nest->max_group; in parse_regex()
6279 if (meta != META_COND_RNUMBER || groupnumber > cb->bracount) in compile_branch()
6337 if (groupnumber > cb->bracount) in compile_branch()
7657 if (meta_arg > cb->bracount) in compile_branch()
7696 if (meta_arg > cb->bracount) in compile_branch()
9247 if (group > cb->bracount) in get_branchlength()
9757 cb.bracount = 0; in pcre2_compile()
10044 if (cb.bracount >= GROUPINFO_DEFAULT_SIZE) in pcre2_compile()
10047 (cb.bracount + 1)*sizeof(uint32_t), ccontext->memctl.memory_data); in pcre2_compile()
10055 memset(cb.groupinfo, 0, (cb.bracount + 1) * sizeof(uint32_t)); in pcre2_compile()
10078 fprintf(stderr, "+++Captures: %d\n", cb.bracount); in pcre2_compile()
10204 re->top_bracket = cb.bracount; in pcre2_compile()