Home
last modified time | relevance | path

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

/art/compiler/utils/
Dgrowable_array.h86 num_allocated_(init_length), in arena_()
96 if (new_length <= num_allocated_) return; in Resize()
99 (num_allocated_ < 128) ? num_allocated_ << 1 : num_allocated_ + (num_allocated_ >> 1); in Resize()
105 memcpy(new_array, elem_list_, sizeof(T) * num_allocated_); in Resize()
106 num_allocated_ = target_length; in Resize()
117 if (num_used_ == num_allocated_) { in Insert()
179 size_t GetNumAllocated() const { return num_allocated_; } in GetNumAllocated()
209 size_t num_allocated_; variable