Searched refs:oveccount (Results 1 – 8 of 8) 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 sizeof(pcre2_match_data) + 3*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()
|
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()
|
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 | 500 uint32_t oveccount; member 599 { "ovector", MOD_DAT, MOD_INT, 0, DO(oveccount) }, 5963 if (dat_datctl.oveccount > 0) in process_data() 5964 pmatch = (regmatch_t *)malloc(sizeof(regmatch_t) * dat_datctl.oveccount); in process_data() 5970 dat_datctl.oveccount, pmatch, eflags); in process_data() 5978 else if (dat_datctl.oveccount == 0) in process_data() 5983 for (i = 0; i < (size_t)dat_datctl.oveccount; i++) in process_data() 6075 if (dat_datctl.oveccount == 0) in process_data() 6081 else if (dat_datctl.oveccount <= max_oveccount) in process_data() 6083 SETFLD(match_data, oveccount, dat_datctl.oveccount); in process_data() [all …]
|
D | pcre2_match.c | 6709 if (re->top_backref >= match_data->oveccount) in pcre2_match() 6719 ocount = 3 * match_data->oveccount; in pcre2_match() 7141 uint32_t arg_offset_max = 2 * match_data->oveccount; in pcre2_match() 7181 if (resetcount > match_data->oveccount) resetcount = match_data->oveccount; in pcre2_match() 7191 if (match_data->oveccount < 1) rc = 0; else in pcre2_match() 7221 if (match_data->oveccount > 0) in pcre2_match()
|
D | pcre2_intmodedep.h | 639 uint16_t oveccount; /* Number of pairs */ member
|
D | pcre2_dfa_match.c | 3569 (uint32_t)match_data->oveccount * 2, /* actual size of same */ in pcre2_dfa_match() 3579 if (rc == PCRE2_ERROR_PARTIAL && match_data->oveccount > 0) in pcre2_dfa_match()
|
D | pcre2_jit_compile.c | 190 sljit_u32 oveccount; member 2499 OP1(SLJIT_MOV_U32, SLJIT_R1, 0, SLJIT_MEM1(SLJIT_R0), SLJIT_OFFSETOF(jit_arguments, oveccount)); in copy_ovector() 7137 sljit_u32 oveccount = arguments->oveccount; in do_callout() local 7154 for (i = 2; i < oveccount; i += 2) in do_callout()
|