Home
last modified time | relevance | path

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

/art/runtime/gc/
Dheap-inl.h432 size_t old_target = target_footprint_.load(std::memory_order_relaxed); in IsOutOfMemoryOnAllocation()
448 if (target_footprint_.compare_exchange_weak(/*inout ref*/old_target, new_footprint, in IsOutOfMemoryOnAllocation()
Dheap.cc280 target_footprint_(initial_size), in Heap()
679 CHECK_NE(target_footprint_.load(std::memory_order_relaxed), 0U); in Heap()
981 size_t orig_target_footprint = target_footprint_.load(std::memory_order_relaxed); in GrowHeapOnJankPerceptibleSwitch()
983 target_footprint_.compare_exchange_strong(orig_target_footprint, in GrowHeapOnJankPerceptibleSwitch()
1379 << " target footprint " << target_footprint_.load(std::memory_order_relaxed) in ThrowOutOfMemoryError()
2181 UnsignedDifference(target_footprint_.load(std::memory_order_relaxed), in ChangeCollector()
3473 GetFreeMemory()) / target_footprint_.load(std::memory_order_relaxed)); in GetPercentFree()
3482 target_footprint_.store(target_footprint, std::memory_order_relaxed); in SetIdealFootprint()
3553 size_t target_footprint = target_footprint_.load(std::memory_order_relaxed); in GrowForUtilization()
3599 size_t target_footprint = target_footprint_.load(std::memory_order_relaxed); in GrowForUtilization()
[all …]
Dheap.h595 return UnsignedDifference(target_footprint_.load(std::memory_order_relaxed), in GetFreeMemoryUntilGC()
1203 return target_footprint_.load(std::memory_order_relaxed) / 8 + max_free_; in NativeAllocationGcWatermark()
1359 Atomic<size_t> target_footprint_; variable