Lines Matching refs:growth_factor
561 template <typename T, int growth_factor = 2, int max_growth = 1 * MB>
673 DCHECK(growth_factor > 1);
678 new_capacity = min_capacity * growth_factor;
681 int growth = current_length * (growth_factor - 1);
720 template <typename T, int growth_factor = 2, int max_growth = 1 * MB>
721 class SequenceCollector : public Collector<T, growth_factor, max_growth> {
724 : Collector<T, growth_factor, max_growth>(initial_capacity),
753 this->Collector<T, growth_factor, max_growth>::Reset();
764 this->Collector<T, growth_factor, max_growth>::NewChunk(new_capacity);