Searched defs:oveccount (Results 1 - 4 of 4) sorted by relevance

/external/pcre/dist2/src/
H A Dpcre2_match_data.c57 pcre2_match_data_create(uint32_t oveccount, pcre2_general_context *gcontext) argument
60 if (oveccount < 1) oveccount = 1;
62 sizeof(pcre2_match_data) + 3*oveccount*sizeof(PCRE2_SIZE),
65 yield->oveccount = oveccount;
132 return match_data->oveccount;
H A Dpcre2_intmodedep.h639 uint16_t oveccount; /* Number of pairs */ member in struct:pcre2_real_match_data
H A Dpcre2_jit_compile.c190 sljit_u32 oveccount; member in struct:jit_arguments
2499 OP1(SLJIT_MOV_U32, SLJIT_R1, 0, SLJIT_MEM1(SLJIT_R0), SLJIT_OFFSETOF(jit_arguments, oveccount));
7137 sljit_u32 oveccount = arguments->oveccount; local
7154 for (i = 2; i < oveccount; i += 2)
H A Dpcre2test.c500 uint32_t oveccount; member in struct:datctl
599 { "ovector", MOD_DAT, MOD_INT, 0, DO(oveccount) },
5963 if (dat_datctl.oveccount > 0)
5964 pmatch = (regmatch_t *)malloc(sizeof(regmatch_t) * dat_datctl.oveccount);
5970 dat_datctl.oveccount, pmatch, eflags);
5978 else if (dat_datctl.oveccount == 0)
5983 for (i = 0; i < (size_t)dat_datctl.oveccount; i++)
6075 if (dat_datctl.oveccount == 0)
6081 else if (dat_datctl.oveccount <= max_oveccount)
6083 SETFLD(match_data, oveccount, dat_datct
6406 uint32_t oveccount; local
[all...]

Completed in 114 milliseconds