nmatch            155 ext/mbstring/oniguruma/onigposix.h ONIG_EXTERN int    regexec P_((regex_t* reg, const char* str, size_t nmatch, regmatch_t* matches, int options));
nmatch            166 ext/mbstring/oniguruma/regposix.c regexec(regex_t* reg, const char* str, size_t nmatch,
nmatch            178 ext/mbstring/oniguruma/regposix.c   if (nmatch == 0 || (reg->comp_options & REG_NOSUB) != 0) {
nmatch            180 ext/mbstring/oniguruma/regposix.c     nmatch = 0;
nmatch            182 ext/mbstring/oniguruma/regposix.c   else if ((int )nmatch < ONIG_C(reg)->num_mem + 1) {
nmatch            200 ext/mbstring/oniguruma/regposix.c       xmemcpy(pmatch, pm, sizeof(regmatch_t) * nmatch);
nmatch            205 ext/mbstring/oniguruma/regposix.c     for (i = 0; i < (int )nmatch; i++)
nmatch            216 ext/mbstring/oniguruma/regposix.c   if (reg->re_nsub > nmatch - 1)
nmatch            217 ext/mbstring/oniguruma/regposix.c     reg->re_nsub = (nmatch <= 1 ? 0 : nmatch - 1);
nmatch            320 ext/pcre/pcrelib/pcreposix.c regexec(const regex_t *preg, const char *string, size_t nmatch,
nmatch            341 ext/pcre/pcrelib/pcreposix.c if (nosub || pmatch == NULL) nmatch = 0;
nmatch            343 ext/pcre/pcrelib/pcreposix.c else if (nmatch > 0)
nmatch            345 ext/pcre/pcrelib/pcreposix.c   if (nmatch <= POSIX_MALLOC_THRESHOLD)
nmatch            351 ext/pcre/pcrelib/pcreposix.c     if (nmatch > INT_MAX/(sizeof(int) * 3)) return REG_ESPACE;
nmatch            352 ext/pcre/pcrelib/pcreposix.c     ovector = (int *)malloc(sizeof(int) * nmatch * 3);
nmatch            375 ext/pcre/pcrelib/pcreposix.c   0, options, ovector, (int)(nmatch * 3));
nmatch            377 ext/pcre/pcrelib/pcreposix.c if (rc == 0) rc = (int)nmatch;    /* All captured slots were filled in */
nmatch            392 ext/pcre/pcrelib/pcreposix.c     for (; i < nmatch; i++) pmatch[i].rm_so = pmatch[i].rm_eo = -1;