Home
last modified time | relevance | path

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

/art/runtime/gc/
Dheap-inl.h431 size_t old_target = target_footprint_.load(std::memory_order_relaxed); in IsOutOfMemoryOnAllocation()
447 if (target_footprint_.compare_exchange_weak(/*inout ref*/old_target, new_footprint, in IsOutOfMemoryOnAllocation()
Dheap.cc282 target_footprint_(initial_size), in Heap()
681 CHECK_NE(target_footprint_.load(std::memory_order_relaxed), 0U); in Heap()
984 size_t orig_target_footprint = target_footprint_.load(std::memory_order_relaxed); in GrowHeapOnJankPerceptibleSwitch()
986 target_footprint_.compare_exchange_strong(orig_target_footprint, in GrowHeapOnJankPerceptibleSwitch()
1382 << " target footprint " << target_footprint_.load(std::memory_order_relaxed) in ThrowOutOfMemoryError()
2182 UnsignedDifference(target_footprint_.load(std::memory_order_relaxed), in ChangeCollector()
3475 GetFreeMemory()) / target_footprint_.load(std::memory_order_relaxed)); in GetPercentFree()
3484 target_footprint_.store(target_footprint, std::memory_order_relaxed); in SetIdealFootprint()
3555 size_t target_footprint = target_footprint_.load(std::memory_order_relaxed); in GrowForUtilization()
3601 size_t target_footprint = target_footprint_.load(std::memory_order_relaxed); in GrowForUtilization()
[all …]
Dheap.h597 return UnsignedDifference(target_footprint_.load(std::memory_order_relaxed), in GetFreeMemoryUntilGC()
1206 return target_footprint_.load(std::memory_order_relaxed) / 8 + max_free_; in NativeAllocationGcWatermark()
1366 Atomic<size_t> target_footprint_; variable