/art/runtime/gc/accounting/ |
atomic_stack.h | 82 return AtomicPushBackInternal(value, growth_limit_); 98 if (UNLIKELY(static_cast<size_t>(new_index) >= growth_limit_)) { 128 DCHECK_LT(static_cast<size_t>(index), growth_limit_); local 159 return Size() == growth_limit_; 181 growth_limit_ = new_capacity; 216 growth_limit_(growth_limit), 263 size_t growth_limit_; member in class:art::gc::accounting::AtomicStack
|
/art/runtime/gc/space/ |
malloc_space.h | 105 growth_limit_ = NonGrowthLimitCapacity(); 110 return growth_limit_; 184 // Prior to forking the zygote the heap will have a maximally sized mem_map_ but the growth_limit_ 185 // will be set to a lower value. The growth_limit_ is used as the capacity of the alloc_space_, 186 // however, capacity normally can't vary. In the case of the growth_limit_ it can be cleared 188 size_t growth_limit_; member in class:art::gc::space::MallocSpace
|
malloc_space.cc | 44 growth_limit_(growth_limit), can_move_objects_(can_move_objects), 124 growth_limit_ = growth_limit; 125 if (Size() > growth_limit_) { 175 const size_t growth_limit = growth_limit_ - size; 181 << "GrowthLimit " << growth_limit_ << "\n"
|
/art/runtime/gc/ |
heap.h | 497 // become larger than growth_limit_ in rare cases. 498 return std::max(GetBytesAllocated(), growth_limit_); 512 return growth_limit_ - GetBytesAllocated(); 1132 size_t growth_limit_; member in class:art::gc::Heap [all...] |
heap.cc | 182 growth_limit_(growth_limit), 462 CreateMainMallocSpace(main_mem_map_1.release(), initial_size, growth_limit_, capacity_); 484 growth_limit_, capacity_, name, true)); [all...] |
heap-inl.h | 410 if (UNLIKELY(new_footprint > growth_limit_)) {
|