Searched refs:oveccount (Results 1 – 12 of 12) sorted by relevance
/external/pcre/dist2/src/ |
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() 138 return match_data->oveccount; in pcre2_get_ovector_count()
|
D | pcre2_jit_match.c | 106 uint32_t oveccount = match_data->oveccount; in pcre2_jit_match() 157 if (oveccount > max_oveccount) in pcre2_jit_match() 158 oveccount = max_oveccount; in pcre2_jit_match() 159 arguments.oveccount = oveccount << 1; in pcre2_jit_match() 171 if (rc > (int)oveccount) in pcre2_jit_match()
|
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()
|
D | pcre2test.c | 571 uint32_t oveccount; member 691 { "ovector", MOD_DAT, MOD_INT, 0, DO(oveccount) }, 6024 scb->subscount, scb->oveccount, in substitute_callout_function() 6502 show_ovector(PCRE2_SIZE *ovector, uint32_t oveccount) in show_ovector() argument 6505 for (i = 0; i < 2*oveccount; i += 2) in show_ovector() 6550 uint32_t oveccount; in process_data() local 7018 if (dat_datctl.oveccount > 0) in process_data() 7020 pmatch = (regmatch_t *)malloc(sizeof(regmatch_t) * dat_datctl.oveccount); in process_data() 7024 "information (size set = %du)\n", dat_datctl.oveccount); in process_data() 7041 rc = regexec(&preg, (const char *)pp, dat_datctl.oveccount, pmatch, eflags); in process_data() [all …]
|
D | pcre2_substitute.c | 422 scb.oveccount = rc; in pcre2_substitute()
|
D | pcre2_intmodedep.h | 663 uint16_t oveccount; /* Number of pairs */ member
|
D | pcre2_match.c | 565 uint16_t oveccount, uint16_t top_bracket, PCRE2_SIZE frame_size, in match() argument 850 i = 2 * ((top_bracket + 1 > oveccount)? oveccount : top_bracket + 1); in match() 6723 match_data->oveccount, re->top_bracket, frame_size, mb); in pcre2_match() 6861 match_data->rc = ((int)mb->end_offset_top >= 2 * match_data->oveccount)? in pcre2_match()
|
D | pcre2_dfa_match.c | 3822 (uint32_t)match_data->oveccount * 2, /* actual size of same */ in pcre2_dfa_match() 3833 if (rc == PCRE2_ERROR_PARTIAL && match_data->oveccount > 0) in pcre2_dfa_match()
|
D | pcre2.h.in | 548 uint32_t oveccount; /* Count of pairs set in ovector */ \
|
D | pcre2.h.generic | 548 uint32_t oveccount; /* Count of pairs set in ovector */ \
|
D | pcre2_jit_compile.c | 190 sljit_u32 oveccount; member 3036 OP1(SLJIT_MOV_U32, SLJIT_R1, 0, SLJIT_MEM1(SLJIT_R0), SLJIT_OFFSETOF(jit_arguments, oveccount)); in copy_ovector() 9573 sljit_u32 oveccount, capture_top; in do_callout() local 9582 oveccount = callout_block->capture_top; in do_callout() 9584 SLJIT_ASSERT(oveccount >= 1); in do_callout() 9606 while (--oveccount != 0) in do_callout()
|
/external/pcre/dist2/doc/ |
D | pcre2.txt | 3399 uint32_t oveccount; 3412 the most recent match. The oveccount field contains the number of pairs
|