Searched refs:growth_limit_ (Results 1 – 6 of 6) sorted by relevance
/art/runtime/gc/accounting/ |
D | atomic_stack.h | 92 return AtomicPushBackInternal(value, growth_limit_); in AtomicPushBack() 108 if (UNLIKELY(static_cast<size_t>(new_index) >= growth_limit_)) { in AtomicBumpBack() 145 if (UNLIKELY(static_cast<size_t>(new_index) >= growth_limit_)) { in BumpBack() 167 DCHECK_LT(static_cast<size_t>(index), growth_limit_); in PushBack() 207 return Size() == growth_limit_; in IsFull() 231 growth_limit_ = new_capacity; in Resize() 266 growth_limit_(growth_limit), in AtomicStack() 316 size_t growth_limit_; variable
|
/art/runtime/gc/space/ |
D | malloc_space.cc | 59 growth_limit_(growth_limit), can_move_objects_(can_move_objects), in MallocSpace() 144 growth_limit_ = growth_limit; in SetGrowthLimit() 145 if (Size() > growth_limit_) { in SetGrowthLimit() 195 const size_t growth_limit = growth_limit_ - size; in CreateZygoteSpace() 201 << "GrowthLimit " << growth_limit_ << "\n" in CreateZygoteSpace()
|
D | malloc_space.h | 97 growth_limit_ = NonGrowthLimitCapacity(); in ClearGrowthLimit() 102 return growth_limit_; in Capacity() 195 size_t growth_limit_; variable
|
/art/runtime/gc/ |
D | heap.cc | 348 growth_limit_(growth_limit), in Heap() 675 CreateMainMallocSpace(std::move(main_mem_map_1), initial_size, growth_limit_, capacity_); in Heap() 686 growth_limit_, in Heap() 1518 << growth_limit_; in ThrowOutOfMemoryError() 2004 size_t free_heap = UnsignedDifference(growth_limit_, curr_bytes_allocated); in AllocateInternalWithGc() 2006 double free_heap_ratio = static_cast<double>(free_heap) / growth_limit_; in AllocateInternalWithGc() 2007 double newly_freed_ratio = static_cast<double>(newly_freed) / growth_limit_; in AllocateInternalWithGc() 2050 static_cast<int64_t>(kMinFreedHeapAfterGcForAlloc * growth_limit_ + alloc_size); in AllocateInternalWithGc() 2545 std::min(mem_map.Size(), growth_limit_), in PreZygoteFork() 3880 capacity_ = growth_limit_; in ClampGrowthLimit() [all …]
|
D | heap-inl.h | 456 } else if (UNLIKELY(new_footprint > growth_limit_)) { in IsOutOfMemoryOnAllocation()
|
D | heap.h | 605 return std::max(GetBytesAllocated(), growth_limit_); in GetMaxMemory() 620 return UnsignedDifference(growth_limit_, GetBytesAllocated()); in GetFreeMemoryUntilOOME() 1474 size_t growth_limit_; variable
|