Home
last modified time | relevance | path

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

/third_party/pcre2/pcre2/src/
Dpcre2_substitute.c305 int pairs = (code->top_bracket + 1 < match_data->oveccount)? in pcre2_substitute()
306 code->top_bracket + 1 : match_data->oveccount; in pcre2_substitute()
583 if (group > code->top_bracket) in pcre2_substitute()
691 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.c584 uint16_t oveccount, uint16_t top_bracket, PCRE2_SIZE frame_size, in match() argument
872 i = 2 * ((top_bracket + 1 > oveccount)? oveccount : top_bracket + 1); in match()
6810 re->top_bracket * 2 * sizeof(PCRE2_SIZE) + HEAPFRAME_ALIGNMENT - 1) & in pcre2_match()
7283 match_data->oveccount, re->top_bracket, frame_size, mb); in pcre2_match()
Dpcre2_jit_compile.c201 sljit_u32 top_bracket; member
9759 sljit_uw callout_arg_size = (common->re->top_bracket + 1) * 2 * sizeof(sljit_sw); in compile_callout_matchingpath()
9773 …2, SLJIT_MEM1(STACK_TOP), CALLOUT_ARG_OFFSET(capture_top), SLJIT_IMM, common->re->top_bracket + 1); in compile_callout_matchingpath()
13813 common->optimized_cbracket = (sljit_u8 *)SLJIT_MALLOC(re->top_bracket + 1, allocator_data); in jit_compile()
13817 memset(common->optimized_cbracket, 0, re->top_bracket + 1); in jit_compile()
13819 memset(common->optimized_cbracket, 1, re->top_bracket + 1); in jit_compile()
13878 memset(common->optimized_cbracket, 0, re->top_bracket + 1); in jit_compile()
13881 common->cbra_ptr = OVECTOR_START + (re->top_bracket + 1) * 2 * sizeof(sljit_sw); in jit_compile()
13892 private_data_size = common->cbra_ptr + (re->top_bracket + 1) * sizeof(sljit_sw); in jit_compile()
13929 reset_ovector(common, (re->top_bracket + 1) * 2); in jit_compile()
[all …]
Dpcre2_compile.c10283 re->top_bracket = 0; in pcre2_compile()
10329 re->top_bracket = cb.bracount; in pcre2_compile()
Dpcre2test.c5587 ((pcre2_real_code_8 *)preg.re_pcre2_code)->top_bracket != preg.re_nsub || in process_pattern()