Home | History | Annotate | Download | only in gold

Lines Matching refs:p_

386       this->p_ = static_cast<unsigned char*>(realloc(this->p_, this->alc_));
387 if (this->p_ == NULL)
391 memcpy(this->p_ + this->len_, p, entsize);
393 memset(this->p_ + this->len_ + entsize, 0, addsize - entsize);
459 this->p_ = static_cast<unsigned char*>(realloc(this->p_, this->len_));
463 gold_assert(this->p_ != NULL || this->len_ == 0);
473 of->write(this->offset(), this->p_, this->len_);
481 memcpy(buffer, this->p_, this->len_);