Home
last modified time | relevance | path

Searched refs:oveccount (Results 1 – 9 of 9) sorted by relevance

/php-src/ext/pcre/pcre2lib/
H A Dpcre2_match_data.c58 pcre2_match_data_create(uint32_t oveccount, pcre2_general_context *gcontext) in pcre2_match_data_create() argument
61 if (oveccount < 1) oveccount = 1; in pcre2_match_data_create()
62 if (oveccount > UINT16_MAX) oveccount = UINT16_MAX; in pcre2_match_data_create()
64 offsetof(pcre2_match_data, ovector) + 2*oveccount*sizeof(PCRE2_SIZE), in pcre2_match_data_create()
67 yield->oveccount = oveccount; in pcre2_match_data_create()
145 return match_data->oveccount; in pcre2_get_ovector_count()
170 2 * (match_data->oveccount) * sizeof(PCRE2_SIZE); in pcre2_get_match_data_size()
H A Dpcre2_jit_match.c111 uint32_t oveccount = match_data->oveccount; in pcre2_jit_match()
162 if (oveccount > max_oveccount) in pcre2_jit_match()
163 oveccount = max_oveccount; in pcre2_jit_match()
164 arguments.oveccount = oveccount << 1; in pcre2_jit_match()
176 if (rc > (int)oveccount) in pcre2_jit_match()
H A Dpcre2_substring.c87 if (n < match_data->oveccount) in pcre2_substring_copy_byname()
175 if (n < match_data->oveccount) in pcre2_substring_get_byname()
282 if (n < match_data->oveccount) in pcre2_substring_length_byname()
332 if (stringnumber >= match_data->oveccount) in pcre2_substring_length_bynumber()
339 if (stringnumber >= match_data->oveccount) return PCRE2_ERROR_UNAVAILABLE; in pcre2_substring_length_bynumber()
387 if (count == 0) count = match_data->oveccount; /* Ovector too small */ in pcre2_substring_list_get()
H A Dpcre2_substitute.c306 int pairs = (code->top_bracket + 1 < match_data->oveccount)? in pcre2_substitute()
307 code->top_bracket + 1 : match_data->oveccount; in pcre2_substitute()
308 internal_match_data = pcre2_match_data_create(match_data->oveccount, in pcre2_substitute()
490 scb.oveccount = rc; in pcre2_substitute()
H A Dpcre2_intmodedep.h669 uint16_t oveccount; /* Number of pairs */ member
H A Dpcre2.h566 uint32_t oveccount; /* Count of pairs set in ovector */ \
H A Dpcre2_dfa_match.c4033 (uint32_t)match_data->oveccount * 2, /* actual size of same */ in pcre2_dfa_match()
4044 if (rc == PCRE2_ERROR_PARTIAL && match_data->oveccount > 0) in pcre2_dfa_match()
H A Dpcre2_match.c936 i = 2 * ((top_bracket + 1 > match_data->oveccount)? in match()
937 match_data->oveccount : top_bracket + 1); in match()
7716 match_data->rc = ((int)mb->end_offset_top >= 2 * match_data->oveccount)? in pcre2_match()
H A Dpcre2_jit_compile.c197 sljit_u32 oveccount; member
3489 OP1(SLJIT_MOV_U32, SLJIT_R1, 0, SLJIT_MEM1(SLJIT_R0), SLJIT_OFFSETOF(jit_arguments, oveccount)); in copy_ovector()
3502 OP1(SLJIT_MOV_U32, SLJIT_R1, 0, SLJIT_MEM1(ARGUMENTS), SLJIT_OFFSETOF(jit_arguments, oveccount)); in copy_ovector()
9900 sljit_u32 oveccount, capture_top; in do_callout_jit() local
9909 oveccount = callout_block->capture_top; in do_callout_jit()
9911 SLJIT_ASSERT(oveccount >= 1); in do_callout_jit()
9933 while (--oveccount != 0) in do_callout_jit()

Completed in 87 milliseconds