HomeSort by relevance Sort by last modified time
    Searched refs:oveccount (Results 1 - 8 of 8) sorted by null

  /external/pcre/dist2/src/
pcre2_match_data.c 57 pcre2_match_data_create(uint32_t oveccount, pcre2_general_context *gcontext)
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;
pcre2_jit_match.c 106 uint32_t oveccount = match_data->oveccount;
159 if (oveccount > max_oveccount)
160 oveccount = max_oveccount;
161 arguments.oveccount = oveccount << 1;
173 if (rc > (int)oveccount)
pcre2_substring.c 87 if (n < match_data->oveccount)
175 if (n < match_data->oveccount)
282 if (n < match_data->oveccount)
331 if (stringnumber >= match_data->oveccount)
338 if (stringnumber >= match_data->oveccount) return PCRE2_ERROR_UNAVAILABLE;
384 if (count == 0) count = match_data->oveccount; /* Ovector too small */
pcre2test.c 500 uint32_t oveccount; member in struct:datctl
599 { "ovector", MOD_DAT, MOD_INT, 0, DO(oveccount) },
6406 uint32_t oveccount; local
    [all...]
pcre2_intmodedep.h 639 uint16_t oveccount; /* Number of pairs */ member in struct:pcre2_real_match_data
    [all...]
pcre2_match.c     [all...]
pcre2_dfa_match.c     [all...]
pcre2_jit_compile.c 190 sljit_u32 oveccount; member in struct:jit_arguments
7137 sljit_u32 oveccount = arguments->oveccount; local
    [all...]

Completed in 63 milliseconds