Lines Matching refs:repend
235 PCRE2_SPTR repend; in pcre2_substitute() local
267 repend = replacement + rlength; in pcre2_substitute()
392 if (ptr >= repend) in pcre2_substitute()
395 repend = ptrstack[--ptrstackptr]; in pcre2_substitute()
404 if (ptr[0] == CHAR_BACKSLASH && ptr < repend - 1 && ptr[1] == CHAR_E) in pcre2_substitute()
429 if (++ptr >= repend) goto BAD; in pcre2_substitute()
439 if (++ptr >= repend) goto BAD; in pcre2_substitute()
446 if (++ptr >= repend) goto BAD; in pcre2_substitute()
454 while (++ptr < repend) in pcre2_substitute()
469 while (++ptr < repend && *ptr >= CHAR_0 && *ptr <= CHAR_9); in pcre2_substitute()
487 if (++ptr >= repend) break; in pcre2_substitute()
500 !star && ptr < repend - 2 && next == CHAR_COLON) in pcre2_substitute()
510 rc = find_text_end(code, &ptr, repend, special == CHAR_MINUS); in pcre2_substitute()
517 rc = find_text_end(code, &ptr, repend, TRUE); in pcre2_substitute()
525 if (ptr >= repend || *ptr != CHAR_RIGHT_CURLY_BRACKET) in pcre2_substitute()
634 ptrstack[ptrstackptr++] = repend; in pcre2_substitute()
639 repend = text1_end; in pcre2_substitute()
644 repend = text2_end; in pcre2_substitute()
703 if (ptr < repend - 1) switch (ptr[1]) in pcre2_substitute()
731 rc = PRIV(check_escape)(&ptr, repend, &ch, &errorcode, in pcre2_substitute()