Lines Matching refs:pp

1416 PCRE2_SPTR pp;  in read_repeat_counts()  local
1429 pp = p; in read_repeat_counts()
1430 if (pp < ptrend && IS_DIGIT(*pp)) in read_repeat_counts()
1433 while (++pp < ptrend && IS_DIGIT(*pp)) {} in read_repeat_counts()
1436 while (pp < ptrend && (*pp == CHAR_SPACE || *pp == CHAR_HT)) pp++; in read_repeat_counts()
1437 if (pp >= ptrend) return FALSE; in read_repeat_counts()
1439 if (*pp == CHAR_RIGHT_CURLY_BRACKET) in read_repeat_counts()
1445 if (*pp++ != CHAR_COMMA) return FALSE; in read_repeat_counts()
1446 while (pp < ptrend && (*pp == CHAR_SPACE || *pp == CHAR_HT)) pp++; in read_repeat_counts()
1447 if (pp >= ptrend) return FALSE; in read_repeat_counts()
1448 if (IS_DIGIT(*pp)) in read_repeat_counts()
1450 while (++pp < ptrend && IS_DIGIT(*pp)) {} in read_repeat_counts()
1453 while (pp < ptrend && (*pp == CHAR_SPACE || *pp == CHAR_HT)) pp++; in read_repeat_counts()
1454 if (pp >= ptrend || *pp != CHAR_RIGHT_CURLY_BRACKET) return FALSE; in read_repeat_counts()
7135 PCRE2_SPTR pp; in compile_branch() local
7146 pp = cb->start_pattern + offset; in compile_branch()
7147 delimiter = *callout_string++ = *pp++; in compile_branch()
7160 if (*pp == delimiter && pp[1] == delimiter) in compile_branch()
7163 pp += 2; in compile_branch()
7166 else *callout_string++ = *pp++; in compile_branch()
10316 uint32_t c, pp; in pcre2_compile() local
10348 pp = skipatstart; in pcre2_compile()
10349 if (!IS_DIGIT(ptr[pp])) in pcre2_compile()
10352 ptr += pp; in pcre2_compile()
10355 while (IS_DIGIT(ptr[pp])) in pcre2_compile()
10358 c = c*10 + (ptr[pp++] - CHAR_0); in pcre2_compile()
10360 if (ptr[pp++] != CHAR_RIGHT_PARENTHESIS) in pcre2_compile()
10363 ptr += pp; in pcre2_compile()
10369 skipatstart += pp - skipatstart; in pcre2_compile()