Home
last modified time | relevance | path

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

/toolchain/binutils/binutils-2.25/gold/
Dstringpool.h102 : chunks_(), size_(0) in Chunked_vector()
109 this->chunks_.clear(); in clear()
117 if (n > this->chunks_.size() * chunk_size) in reserve()
119 this->chunks_.resize((n + chunk_size - 1) / chunk_size); in reserve()
123 for (size_t i = 0; i < this->chunks_.size(); ++i) in reserve()
124 this->chunks_[i].reserve(chunk_size); in reserve()
138 if (chunk_index >= this->chunks_.size()) in push_back()
140 this->chunks_.push_back(Element_vector()); in push_back()
141 this->chunks_.back().reserve(chunk_size); in push_back()
142 gold_assert(chunk_index < this->chunks_.size()); in push_back()
[all …]