Searched defs:growth_limit_ (Results 1 - 3 of 3) sorted by relevance

/art/runtime/gc/space/
H A Dmalloc_space.h100 growth_limit_ = NonGrowthLimitCapacity();
105 return growth_limit_;
175 // Prior to forking the zygote the heap will have a maximally sized mem_map_ but the growth_limit_
176 // will be set to a lower value. The growth_limit_ is used as the capacity of the alloc_space_,
177 // however, capacity normally can't vary. In the case of the growth_limit_ it can be cleared
179 size_t growth_limit_; member in class:art::gc::space::MallocSpace
/art/runtime/gc/accounting/
H A Datomic_stack.h64 return AtomicPushBackInternal(value, growth_limit_);
78 if (UNLIKELY(static_cast<size_t>(new_index) >= growth_limit_)) {
108 DCHECK_LT(static_cast<size_t>(index), growth_limit_); local
158 growth_limit_ = new_capacity;
188 growth_limit_(growth_limit),
234 size_t growth_limit_; member in class:art::gc::accounting::AtomicStack
/art/runtime/gc/
H A Dheap.h426 // become larger than growth_limit_ in rare cases.
427 return std::max(GetBytesAllocated(), growth_limit_);
441 return growth_limit_ - GetBytesAllocated();
880 size_t growth_limit_; member in class:art::gc::Heap

Completed in 1514 milliseconds