Home | History | Annotate | Download | only in src

Lines Matching defs:mrc

1456   mrc          address of where to put the result of pcre2_match()
1465 size_t startoffset, int *mrc)
1479 *mrc = pcre2_match(p->compiled, (PCRE2_SPTR)matchptr, (int)length,
1481 if (*mrc >= 0) return TRUE;
1482 if (*mrc == PCRE2_ERROR_NOMATCH) continue;
1483 fprintf(stderr, "pcre2grep: pcre2_match() gave error %d while matching ", *mrc);
1488 if (*mrc == PCRE2_ERROR_MATCHLIMIT || *mrc == PCRE2_ERROR_RECURSIONLIMIT ||
1489 *mrc == PCRE2_ERROR_JIT_STACKLIMIT)
1880 int mrc = 0;
1978 match = match_patterns(matchptr, length, options, startoffset, &mrc);
2059 if (n < mrc)
2217 if (S_arg >= 0 && S_arg < mrc)
2242 !match_patterns(matchptr, length, options, startoffset, &mrc))