Lines Matching refs:bracount

1803       if (!read_number(&p, ptrend, cb->bracount, MAX_GROUP_NUMBER, ERR61, &s,  in PRIV()
1823 if (!read_number(&ptr, ptrend, cb->bracount, MAX_GROUP_NUMBER, ERR61, &s, in PRIV()
1871 (s < 10 || oldptr[-1] >= CHAR_8 || s <= (int)cb->bracount)) in PRIV()
3372 if (read_number(&p, ptrend, cb->bracount, MAX_GROUP_NUMBER, ERR61, &i, in parse_regex()
3938 if (cb->bracount >= MAX_GROUP_NUMBER) in parse_regex()
3943 cb->bracount++; in parse_regex()
3944 *parsed_pattern++ = META_CAPTURE | cb->bracount; in parse_regex()
4193 top_nest->reset_group = (uint16_t)cb->bracount; in parse_regex()
4194 top_nest->max_group = (uint16_t)cb->bracount; in parse_regex()
4417 (IS_DIGIT(*ptr))? -1:(int)(cb->bracount), /* + and - are relative */ in parse_regex()
4607 if (read_number(&ptr, ptrend, cb->bracount, MAX_GROUP_NUMBER, ERR61, &i, in parse_regex()
4840 if (cb->bracount >= MAX_GROUP_NUMBER) in parse_regex()
4845 cb->bracount++; in parse_regex()
4846 *parsed_pattern++ = META_CAPTURE | cb->bracount; in parse_regex()
4876 if (ng->number == cb->bracount) break; in parse_regex()
4885 else if (ng->number == cb->bracount) in parse_regex()
4921 cb->named_groups[cb->names_found].number = cb->bracount; in parse_regex()
4937 if (cb->bracount > top_nest->max_group) in parse_regex()
4938 top_nest->max_group = (uint16_t)cb->bracount; in parse_regex()
4939 cb->bracount = top_nest->reset_group; in parse_regex()
4955 top_nest->max_group > cb->bracount) in parse_regex()
4956 cb->bracount = top_nest->max_group; in parse_regex()
6655 if (meta != META_COND_RNUMBER || groupnumber > cb->bracount) in compile_branch()
6713 if (groupnumber > cb->bracount) in compile_branch()
8033 if (meta_arg > cb->bracount) in compile_branch()
8072 if (meta_arg > cb->bracount) in compile_branch()
9689 if (group > cb->bracount) in get_branchlength()
10248 cb.bracount = 0; in pcre2_compile()
10539 if (cb.bracount >= GROUPINFO_DEFAULT_SIZE/2) in pcre2_compile()
10542 (2 * (cb.bracount + 1))*sizeof(uint32_t), ccontext->memctl.memory_data); in pcre2_compile()
10550 memset(cb.groupinfo, 0, (2 * cb.bracount + 1) * sizeof(uint32_t)); in pcre2_compile()
10567 fprintf(stderr, "+++Captures: %d\n", cb.bracount); in pcre2_compile()
10701 re->top_bracket = cb.bracount; in pcre2_compile()