nmatch             66 ext/ereg/regex/engine.c matcher(g, string, nmatch, pmatch, eflags)
nmatch             69 ext/ereg/regex/engine.c size_t nmatch;
nmatch             85 ext/ereg/regex/engine.c 		nmatch = 0;
nmatch            128 ext/ereg/regex/engine.c 		if (nmatch == 0 && !g->backrefs)
nmatch            141 ext/ereg/regex/engine.c 		if (nmatch == 1 && !g->backrefs)
nmatch            203 ext/ereg/regex/engine.c 	if (nmatch > 0) {
nmatch            207 ext/ereg/regex/engine.c 	if (nmatch > 1) {
nmatch            209 ext/ereg/regex/engine.c 		for (i = 1; i < nmatch; i++)
nmatch            113 ext/ereg/regex/regexec.c regexec(preg, string, nmatch, pmatch, eflags)
nmatch            116 ext/ereg/regex/regexec.c size_t nmatch;
nmatch            135 ext/ereg/regex/regexec.c 		return(smatcher(g, (unsigned char *)string, nmatch, pmatch, eflags));
nmatch            137 ext/ereg/regex/regexec.c 		return(lmatcher(g, (unsigned char *)string, nmatch, pmatch, eflags));
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            322 ext/pcre/pcrelib/pcreposix.c regexec(const regex_t *preg, const char *string, size_t nmatch,
nmatch            343 ext/pcre/pcrelib/pcreposix.c if (nosub || pmatch == NULL) nmatch = 0;
nmatch            345 ext/pcre/pcrelib/pcreposix.c else if (nmatch > 0)
nmatch            347 ext/pcre/pcrelib/pcreposix.c   if (nmatch <= POSIX_MALLOC_THRESHOLD)
nmatch            353 ext/pcre/pcrelib/pcreposix.c     if (nmatch > INT_MAX/(sizeof(int) * 3)) return REG_ESPACE;
nmatch            354 ext/pcre/pcrelib/pcreposix.c     ovector = (int *)malloc(sizeof(int) * nmatch * 3);
nmatch            377 ext/pcre/pcrelib/pcreposix.c   0, options, ovector, (int)(nmatch * 3));
nmatch            379 ext/pcre/pcrelib/pcreposix.c if (rc == 0) rc = (int)nmatch;    /* All captured slots were filled in */
nmatch            394 ext/pcre/pcrelib/pcreposix.c     for (; i < nmatch; i++) pmatch[i].rm_so = pmatch[i].rm_eo = -1;