Searched refs:top_bracket (Results 1 – 10 of 10) sorted by relevance
/external/pcre/dist2/src/ |
D | pcre2_substitute.c | 293 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()
|
D | pcre2_pattern_info.c | 140 *((uint32_t *)where) = re->top_bracket; in pcre2_pattern_info() 169 re->top_bracket * 2 * sizeof(PCRE2_SIZE); in pcre2_pattern_info()
|
D | pcre2_match_data.c | 83 return pcre2_match_data_create(((pcre2_real_code *)code)->top_bracket + 1, in pcre2_match_data_create_from_pattern()
|
D | pcre2_jit_match.c | 155 max_oveccount = functions->top_bracket; in pcre2_jit_match()
|
D | pcre2_substring.c | 329 if (stringnumber > match_data->code->top_bracket) in pcre2_substring_length_bynumber()
|
D | pcre2_intmodedep.h | 638 uint16_t top_bracket; /* Highest numbered group */ member
|
D | pcre2_match.c | 583 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()
|
D | pcre2_jit_compile.c | 201 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 …]
|
D | pcre2_compile.c | 10159 re->top_bracket = 0; in pcre2_compile() 10205 re->top_bracket = cb.bracount; in pcre2_compile()
|
D | pcre2test.c | 5569 ((pcre2_real_code_8 *)preg.re_pcre2_code)->top_bracket != preg.re_nsub || in process_pattern()
|