Searched refs:num_allocated_ (Results 1 – 1 of 1) sorted by relevance
34 num_allocated_(init_length), in GrowableArray()41 num_allocated_(init_length), in GrowableArray()60 if (new_length <= num_allocated_) return; in Resize()63 (num_allocated_ < 128) ? num_allocated_ << 1 : num_allocated_ + (num_allocated_ >> 1); in Resize()68 memcpy(new_array, elem_list_, sizeof(T) * num_allocated_); in Resize()69 num_allocated_ = target_length; in Resize()80 if (num_used_ == num_allocated_) { in Insert()142 size_t GetNumAllocated() const { return num_allocated_; } in GetNumAllocated()167 size_t num_allocated_; variable