Home
last modified time | relevance | path

Searched refs:alc_ (Results 1 – 2 of 2) sorted by relevance

/toolchain/binutils/binutils-2.25/gold/
Dmerge.cc380 if (this->len_ + addsize > this->alc_) in add_constant()
382 if (this->alc_ == 0) in add_constant()
383 this->alc_ = 128 * addsize; in add_constant()
385 this->alc_ *= 2; in add_constant()
386 this->p_ = static_cast<unsigned char*>(realloc(this->p_, this->alc_)); in add_constant()
Dmerge.h341 : Output_merge_base(entsize, addralign), p_(NULL), len_(0), alc_(0), in Output_merge_data()
449 section_size_type alc_; variable