Home | History | Annotate | Download | only in base

Lines Matching refs:p_

422       : p_(p),
431 *v = *p_;
432 p_++;
440 *v = static_cast<uint16>(p_[0]) << 8 |
441 static_cast<uint16>(p_[1]);
442 p_ += 2;
450 *v = static_cast<uint32>(p_[0]) << 24 |
451 static_cast<uint32>(p_[1]) << 16 |
452 static_cast<uint32>(p_[2]) << 8 |
453 static_cast<uint32>(p_[3]);
454 p_ += 4;
462 p_ += n;
470 *out = base::StringPiece(reinterpret_cast<const char*>(p_), len);
471 p_ += len;
480 const uint8* p = p_;
508 p_ = p;
530 p_ = p;
545 const uint8* p_;