Lines Matching defs:pp
459 uint32_t GetChar(const uint8_t **pp, const uint8_t *end) const
462 const uint8_t *cptr = *pp;
465 *pp += 1; // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic)
479 *pp = cptr;
505 void AdvancePtr(const uint8_t **pp, const uint8_t *end) const
507 const uint8_t *cptr = *pp;
509 *pp += 1; // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic)
521 *pp = cptr;
547 uint32_t GetPrevChar(const uint8_t **pp, const uint8_t *start) const
550 const uint8_t *cptr = *pp;
554 *pp = cptr;
568 *pp = cptr;
573 void PrevPtr(const uint8_t **pp, const uint8_t *start) const
575 const uint8_t *cptr = *pp;
578 *pp = cptr;
589 *pp = cptr;