Home
last modified time | relevance | path

Searched refs:top_bracket (Results 1 – 10 of 10) sorted by relevance

/external/pcre/dist2/src/
Dpcre2_substitute.c293 int pairs = (code->top_bracket + 1 < match_data->oveccount)? in pcre2_substitute()
294 code->top_bracket + 1 : match_data->oveccount; in pcre2_substitute()
564 if (group > code->top_bracket) in pcre2_substitute()
672 group = code->top_bracket + 1; in pcre2_substitute()
Dpcre2_pattern_info.c140 *((uint32_t *)where) = re->top_bracket; in pcre2_pattern_info()
169 re->top_bracket * 2 * sizeof(PCRE2_SIZE); in pcre2_pattern_info()
Dpcre2_match_data.c83 return pcre2_match_data_create(((pcre2_real_code *)code)->top_bracket + 1, in pcre2_match_data_create_from_pattern()
Dpcre2_jit_match.c155 max_oveccount = functions->top_bracket; in pcre2_jit_match()
Dpcre2_substring.c329 if (stringnumber > match_data->code->top_bracket) in pcre2_substring_length_bynumber()
Dpcre2_intmodedep.h638 uint16_t top_bracket; /* Highest numbered group */ member
Dpcre2_match.c583 uint16_t oveccount, uint16_t top_bracket, PCRE2_SIZE frame_size, in match() argument
869 i = 2 * ((top_bracket + 1 > oveccount)? oveccount : top_bracket + 1); in match()
6605 re->top_bracket * 2 * sizeof(PCRE2_SIZE); in pcre2_match()
6649 re->top_bracket * 2 * sizeof(PCRE2_SIZE)); in pcre2_match()
7058 match_data->oveccount, re->top_bracket, frame_size, mb); in pcre2_match()
Dpcre2_jit_compile.c201 sljit_u32 top_bracket; member
9528 sljit_uw callout_arg_size = (common->re->top_bracket + 1) * 2 * sizeof(sljit_sw); in compile_callout_matchingpath()
9542 …2, SLJIT_MEM1(STACK_TOP), CALLOUT_ARG_OFFSET(capture_top), SLJIT_IMM, common->re->top_bracket + 1); in compile_callout_matchingpath()
13584 common->optimized_cbracket = (sljit_u8 *)SLJIT_MALLOC(re->top_bracket + 1, allocator_data); in jit_compile()
13588 memset(common->optimized_cbracket, 0, re->top_bracket + 1); in jit_compile()
13590 memset(common->optimized_cbracket, 1, re->top_bracket + 1); in jit_compile()
13649 memset(common->optimized_cbracket, 0, re->top_bracket + 1); in jit_compile()
13652 common->cbra_ptr = OVECTOR_START + (re->top_bracket + 1) * 2 * sizeof(sljit_sw); in jit_compile()
13663 private_data_size = common->cbra_ptr + (re->top_bracket + 1) * sizeof(sljit_sw); in jit_compile()
13697 reset_ovector(common, (re->top_bracket + 1) * 2); in jit_compile()
[all …]
Dpcre2_compile.c10159 re->top_bracket = 0; in pcre2_compile()
10205 re->top_bracket = cb.bracount; in pcre2_compile()
Dpcre2test.c5569 ((pcre2_real_code_8 *)preg.re_pcre2_code)->top_bracket != preg.re_nsub || in process_pattern()