Lines Matching refs:pp

1415 PCRE2_SPTR pp;  in read_repeat_counts()  local
1428 pp = p; in read_repeat_counts()
1429 if (pp < ptrend && IS_DIGIT(*pp)) in read_repeat_counts()
1432 while (++pp < ptrend && IS_DIGIT(*pp)) {} in read_repeat_counts()
1435 while (pp < ptrend && (*pp == CHAR_SPACE || *pp == CHAR_HT)) pp++; in read_repeat_counts()
1436 if (pp >= ptrend) return FALSE; in read_repeat_counts()
1438 if (*pp == CHAR_RIGHT_CURLY_BRACKET) in read_repeat_counts()
1444 if (*pp++ != CHAR_COMMA) return FALSE; in read_repeat_counts()
1445 while (pp < ptrend && (*pp == CHAR_SPACE || *pp == CHAR_HT)) pp++; in read_repeat_counts()
1446 if (pp >= ptrend) return FALSE; in read_repeat_counts()
1447 if (IS_DIGIT(*pp)) in read_repeat_counts()
1449 while (++pp < ptrend && IS_DIGIT(*pp)) {} in read_repeat_counts()
1452 while (pp < ptrend && (*pp == CHAR_SPACE || *pp == CHAR_HT)) pp++; in read_repeat_counts()
1453 if (pp >= ptrend || *pp != CHAR_RIGHT_CURLY_BRACKET) return FALSE; in read_repeat_counts()
7134 PCRE2_SPTR pp; in compile_branch() local
7145 pp = cb->start_pattern + offset; in compile_branch()
7146 delimiter = *callout_string++ = *pp++; in compile_branch()
7159 if (*pp == delimiter && pp[1] == delimiter) in compile_branch()
7162 pp += 2; in compile_branch()
7165 else *callout_string++ = *pp++; in compile_branch()
10314 uint32_t c, pp; in pcre2_compile() local
10346 pp = skipatstart; in pcre2_compile()
10347 if (!IS_DIGIT(ptr[pp])) in pcre2_compile()
10350 ptr += pp; in pcre2_compile()
10353 while (IS_DIGIT(ptr[pp])) in pcre2_compile()
10356 c = c*10 + (ptr[pp++] - CHAR_0); in pcre2_compile()
10358 if (ptr[pp++] != CHAR_RIGHT_PARENTHESIS) in pcre2_compile()
10361 ptr += pp; in pcre2_compile()
10367 skipatstart += pp - skipatstart; in pcre2_compile()