/art/runtime/gc/accounting/ |
atomic_stack.h | 64 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/space/ |
malloc_space.h | 100 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
|
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; 180 << "GrowthLimit " << growth_limit_ << "\n"
|
/art/runtime/gc/ |
heap-inl.h | 306 if (UNLIKELY(new_footprint > growth_limit_)) {
|
heap.h | 426 // 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 [all...] |
heap.cc | 153 growth_limit_(growth_limit), 330 CreateMainMallocSpace(main_mem_map_1.release(), initial_size, growth_limit_, capacity_); 352 growth_limit_, capacity_, name, true)); [all...] |