Lines Matching refs:bracount

1597       if (!read_number(&p, ptrend, cb->bracount, MAX_GROUP_NUMBER, ERR61, &s,  in PRIV()
1615 if (!read_number(&ptr, ptrend, cb->bracount, MAX_GROUP_NUMBER, ERR61, &s, in PRIV()
1660 if (s < 10 || oldptr[-1] >= CHAR_8 || s <= (int)cb->bracount) in PRIV()
2894 if (read_number(&p, ptrend, cb->bracount, MAX_GROUP_NUMBER, ERR61, &i, in parse_regex()
3457 cb->bracount++; in parse_regex()
3458 *parsed_pattern++ = META_CAPTURE | cb->bracount; in parse_regex()
3589 top_nest->reset_group = (uint16_t)cb->bracount; in parse_regex()
3590 top_nest->max_group = (uint16_t)cb->bracount; in parse_regex()
3764 (IS_DIGIT(*ptr))? -1:(int)(cb->bracount), /* + and - are relative */ in parse_regex()
3953 if (read_number(&ptr, ptrend, cb->bracount, MAX_GROUP_NUMBER, ERR61, &i, in parse_regex()
4170 cb->bracount++; in parse_regex()
4171 *parsed_pattern++ = META_CAPTURE | cb->bracount; in parse_regex()
4201 if (ng->number == cb->bracount) break; in parse_regex()
4210 else if (ng->number == cb->bracount) in parse_regex()
4246 cb->named_groups[cb->names_found].number = cb->bracount; in parse_regex()
4262 if (cb->bracount > top_nest->max_group) in parse_regex()
4263 top_nest->max_group = (uint16_t)cb->bracount; in parse_regex()
4264 cb->bracount = top_nest->reset_group; in parse_regex()
4279 top_nest->max_group > cb->bracount) in parse_regex()
4280 cb->bracount = top_nest->max_group; in parse_regex()
5863 if (meta != META_COND_RNUMBER || groupnumber > cb->bracount) in compile_branch()
5921 if (groupnumber > cb->bracount) in compile_branch()
7223 if (meta_arg > cb->bracount) in compile_branch()
7276 if (meta_arg > cb->bracount) in compile_branch()
8789 if (group > cb->bracount) in get_branchlength()
9228 cb.bracount = 0; in pcre2_compile()
9515 if (cb.bracount >= GROUPINFO_DEFAULT_SIZE) in pcre2_compile()
9518 (cb.bracount + 1)*sizeof(uint32_t), ccontext->memctl.memory_data); in pcre2_compile()
9526 memset(cb.groupinfo, 0, (cb.bracount + 1) * sizeof(uint32_t)); in pcre2_compile()
9549 fprintf(stderr, "+++Captures: %d\n", cb.bracount); in pcre2_compile()
9675 re->top_bracket = cb.bracount; in pcre2_compile()