Lines Matching refs:pp
6779 PCRE2_SPTR pp; in compile_branch() local
6790 pp = cb->start_pattern + offset; in compile_branch()
6791 delimiter = *callout_string++ = *pp++; in compile_branch()
6804 if (*pp == delimiter && pp[1] == delimiter) in compile_branch()
6807 pp += 2; in compile_branch()
6810 else *callout_string++ = *pp++; in compile_branch()
9857 uint32_t c, pp; in pcre2_compile() local
9889 pp = skipatstart; in pcre2_compile()
9890 if (!IS_DIGIT(ptr[pp])) in pcre2_compile()
9893 ptr += pp; in pcre2_compile()
9896 while (IS_DIGIT(ptr[pp])) in pcre2_compile()
9899 c = c*10 + (ptr[pp++] - CHAR_0); in pcre2_compile()
9901 if (ptr[pp++] != CHAR_RIGHT_PARENTHESIS) in pcre2_compile()
9904 ptr += pp; in pcre2_compile()
9910 skipatstart += pp - skipatstart; in pcre2_compile()