Lines Matching refs:p_
28 Request::Request(const uint8_t* bytes, uint32_t available) : p_(bytes) { in Request()
47 if (p_ < end_) { in CheckConsumed()
48 CHECK(p_ == end_) << "read too few bytes: " << (end_ - p_); in CheckConsumed()
49 } else if (p_ > end_) { in CheckConsumed()
50 CHECK(p_ == end_) << "read too many bytes: " << (p_ - end_); in CheckConsumed()
58 memcpy(&s[0], p_, length); in ReadUtf8String()
59 p_ += length; in ReadUtf8String()
159 return *p_++; in Read1()
163 uint16_t result = p_[0] << 8 | p_[1]; in Read2BE()
164 p_ += 2; in Read2BE()
169 uint32_t result = p_[0] << 24; in Read4BE()
170 result |= p_[1] << 16; in Read4BE()
171 result |= p_[2] << 8; in Read4BE()
172 result |= p_[3]; in Read4BE()
173 p_ += 4; in Read4BE()