Lines Matching refs:bracount

1744       if (!read_number(&p, ptrend, cb->bracount, MAX_GROUP_NUMBER, ERR61, &s,  in PRIV()
1762 if (!read_number(&ptr, ptrend, cb->bracount, MAX_GROUP_NUMBER, ERR61, &s, in PRIV()
1810 (s < 10 || oldptr[-1] >= CHAR_8 || s <= (int)cb->bracount)) in PRIV()
3195 if (read_number(&p, ptrend, cb->bracount, MAX_GROUP_NUMBER, ERR61, &i, in parse_regex()
3778 if (cb->bracount >= MAX_GROUP_NUMBER) in parse_regex()
3783 cb->bracount++; in parse_regex()
3784 *parsed_pattern++ = META_CAPTURE | cb->bracount; in parse_regex()
4031 top_nest->reset_group = (uint16_t)cb->bracount; in parse_regex()
4032 top_nest->max_group = (uint16_t)cb->bracount; in parse_regex()
4206 (IS_DIGIT(*ptr))? -1:(int)(cb->bracount), /* + and - are relative */ in parse_regex()
4396 if (read_number(&ptr, ptrend, cb->bracount, MAX_GROUP_NUMBER, ERR61, &i, in parse_regex()
4628 if (cb->bracount >= MAX_GROUP_NUMBER) in parse_regex()
4633 cb->bracount++; in parse_regex()
4634 *parsed_pattern++ = META_CAPTURE | cb->bracount; in parse_regex()
4664 if (ng->number == cb->bracount) break; in parse_regex()
4673 else if (ng->number == cb->bracount) in parse_regex()
4709 cb->named_groups[cb->names_found].number = cb->bracount; in parse_regex()
4725 if (cb->bracount > top_nest->max_group) in parse_regex()
4726 top_nest->max_group = (uint16_t)cb->bracount; in parse_regex()
4727 cb->bracount = top_nest->reset_group; in parse_regex()
4742 top_nest->max_group > cb->bracount) in parse_regex()
4743 cb->bracount = top_nest->max_group; in parse_regex()
6391 if (meta != META_COND_RNUMBER || groupnumber > cb->bracount) in compile_branch()
6449 if (groupnumber > cb->bracount) in compile_branch()
7774 if (meta_arg > cb->bracount) in compile_branch()
7813 if (meta_arg > cb->bracount) in compile_branch()
9373 if (group > cb->bracount) in get_branchlength()
9883 cb.bracount = 0; in pcre2_compile()
10170 if (cb.bracount >= GROUPINFO_DEFAULT_SIZE) in pcre2_compile()
10173 (cb.bracount + 1)*sizeof(uint32_t), ccontext->memctl.memory_data); in pcre2_compile()
10181 memset(cb.groupinfo, 0, (cb.bracount + 1) * sizeof(uint32_t)); in pcre2_compile()
10205 fprintf(stderr, "+++Captures: %d\n", cb.bracount); in pcre2_compile()
10331 re->top_bracket = cb.bracount; in pcre2_compile()