Lines Matching refs:repend
243 PCRE2_SPTR repend; in pcre2_substitute() local
273 repend = replacement + rlength; in pcre2_substitute()
513 if (ptr >= repend) in pcre2_substitute()
516 repend = ptrstack[--ptrstackptr]; in pcre2_substitute()
525 if (ptr[0] == CHAR_BACKSLASH && ptr < repend - 1 && ptr[1] == CHAR_E) in pcre2_substitute()
550 if (++ptr >= repend) goto BAD; in pcre2_substitute()
560 if (++ptr >= repend) goto BAD; in pcre2_substitute()
567 if (++ptr >= repend) goto BAD; in pcre2_substitute()
575 while (++ptr < repend) in pcre2_substitute()
590 while (++ptr < repend && *ptr >= CHAR_0 && *ptr <= CHAR_9); in pcre2_substitute()
608 if (++ptr >= repend) break; in pcre2_substitute()
621 !star && ptr < repend - 2 && next == CHAR_COLON) in pcre2_substitute()
631 rc = find_text_end(code, &ptr, repend, special == CHAR_MINUS); in pcre2_substitute()
638 rc = find_text_end(code, &ptr, repend, TRUE); in pcre2_substitute()
646 if (ptr >= repend || *ptr != CHAR_RIGHT_CURLY_BRACKET) in pcre2_substitute()
755 ptrstack[ptrstackptr++] = repend; in pcre2_substitute()
760 repend = text1_end; in pcre2_substitute()
765 repend = text2_end; in pcre2_substitute()
824 if (ptr < repend - 1) switch (ptr[1]) in pcre2_substitute()
853 rc = PRIV(check_escape)(&ptr, repend, &ch, &errorcode, in pcre2_substitute()