Home
last modified time | relevance | path

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

/external/pcre/dist2/src/
Dpcre2_match_data.c82 return pcre2_match_data_create(((pcre2_real_code *)code)->top_bracket + 1, in pcre2_match_data_create_from_pattern()
Dpcre2_jit_match.c158 max_oveccount = functions->top_bracket; in pcre2_jit_match()
Dpcre2_substitute.c465 if (group > code->top_bracket) in pcre2_substitute()
573 group = code->top_bracket + 1; in pcre2_substitute()
Dpcre2_pattern_info.c137 *((uint32_t *)where) = re->top_bracket; in pcre2_pattern_info()
Dpcre2_substring.c329 if (stringnumber > match_data->code->top_bracket) in pcre2_substring_length_bynumber()
Dpcre2_intmodedep.h622 uint16_t top_bracket; /* Highest numbered group */ member
Dpcre2_jit_compile.c200 sljit_u32 top_bracket; member
10935 common->optimized_cbracket = (sljit_u8 *)SLJIT_MALLOC(re->top_bracket + 1, allocator_data); in jit_compile()
10939 memset(common->optimized_cbracket, 0, re->top_bracket + 1); in jit_compile()
10941 memset(common->optimized_cbracket, 1, re->top_bracket + 1); in jit_compile()
11000 memset(common->optimized_cbracket, 0, re->top_bracket + 1); in jit_compile()
11003 common->cbra_ptr = OVECTOR_START + (re->top_bracket + 1) * 2 * sizeof(sljit_sw); in jit_compile()
11014 private_data_size = common->cbra_ptr + (re->top_bracket + 1) * sizeof(sljit_sw); in jit_compile()
11051 reset_ovector(common, (re->top_bracket + 1) * 2); in jit_compile()
11149 copy_ovector(common, re->top_bracket + 1); in jit_compile()
11341 do_reset_match(common, (re->top_bracket + 1) * 2); in jit_compile()
[all …]
Dpcre2_match.c6735 register PCRE2_SIZE *iend = iptr - re->top_bracket; in pcre2_match()
7177 if (mb->end_offset_top/2 <= re->top_bracket) in pcre2_match()
7180 int resetcount = re->top_bracket + 1; in pcre2_match()
Dpcre2_compile.c8700 re->top_bracket = 0; in pcre2_compile()
8773 re->top_bracket = cb.bracount; in pcre2_compile()
8875 if (re->top_backref > re->top_bracket) errorcode = ERR15; in pcre2_compile()
Dpcre2test.c4827 ((pcre2_real_code_8 *)preg.re_pcre2_code)->top_bracket != preg.re_nsub || in process_pattern()