Searched refs:oveccount (Results 1 – 7 of 7) sorted by relevance
/PHP-7.3/ext/pcre/pcre2lib/ |
H A D | pcre2_match_data.c | 57 pcre2_match_data_create(uint32_t oveccount, pcre2_general_context *gcontext) in pcre2_match_data_create() argument 60 if (oveccount < 1) oveccount = 1; in pcre2_match_data_create() 62 offsetof(pcre2_match_data, ovector) + 2*oveccount*sizeof(PCRE2_SIZE), in pcre2_match_data_create() 65 yield->oveccount = oveccount; in pcre2_match_data_create() 132 return match_data->oveccount; in pcre2_get_ovector_count()
|
H A D | pcre2_jit_match.c | 106 uint32_t oveccount = match_data->oveccount; in pcre2_jit_match() 159 if (oveccount > max_oveccount) in pcre2_jit_match() 160 oveccount = max_oveccount; in pcre2_jit_match() 161 arguments.oveccount = oveccount << 1; in pcre2_jit_match() 173 if (rc > (int)oveccount) in pcre2_jit_match()
|
H A D | pcre2_substring.c | 87 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() 331 if (stringnumber >= match_data->oveccount) in pcre2_substring_length_bynumber() 338 if (stringnumber >= match_data->oveccount) return PCRE2_ERROR_UNAVAILABLE; in pcre2_substring_length_bynumber() 384 if (count == 0) count = match_data->oveccount; /* Ovector too small */ in pcre2_substring_list_get()
|
H A D | pcre2_intmodedep.h | 660 uint16_t oveccount; /* Number of pairs */ member
|
H A D | pcre2_match.c | 564 uint16_t oveccount, uint16_t top_bracket, PCRE2_SIZE frame_size, in match() argument 849 i = 2 * ((top_bracket + 1 > oveccount)? oveccount : top_bracket + 1); in match() 6684 match_data->oveccount, re->top_bracket, frame_size, mb); in pcre2_match() 6822 match_data->rc = ((int)mb->end_offset_top >= 2 * match_data->oveccount)? in pcre2_match()
|
H A D | pcre2_dfa_match.c | 3799 (uint32_t)match_data->oveccount * 2, /* actual size of same */ in pcre2_dfa_match() 3810 if (rc == PCRE2_ERROR_PARTIAL && match_data->oveccount > 0) in pcre2_dfa_match()
|
H A D | pcre2_jit_compile.c | 190 sljit_u32 oveccount; member 2838 OP1(SLJIT_MOV_U32, SLJIT_R1, 0, SLJIT_MEM1(SLJIT_R0), SLJIT_OFFSETOF(jit_arguments, oveccount)); in copy_ovector() 8206 sljit_u32 oveccount, capture_top; in do_callout() local 8215 oveccount = callout_block->capture_top; in do_callout() 8217 SLJIT_ASSERT(oveccount >= 1); in do_callout() 8239 while (--oveccount != 0) in do_callout()
|
Completed in 62 milliseconds