Home | History | Annotate | Download | only in gold

Lines Matching refs:len_

312   if (this->len_ + addsize > this->alc_)
323 memcpy(this->p_ + this->len_, p, entsize);
325 memset(this->p_ + this->len_ + entsize, 0, addsize - entsize);
326 this->len_ += addsize;
361 Merge_data_key k = this->len_;
370 this->len_ -= entsize;
395 this->p_ = static_cast<unsigned char*>(realloc(this->p_, this->len_));
399 gold_assert(this->p_ != NULL || this->len_ == 0);
400 this->set_data_size(this->len_);
409 of->write(this->offset(), this->p_, this->len_);
417 memcpy(buffer, this->p_, this->len_);