Searched refs:target_footprint_ (Results 1 – 3 of 3) sorted by relevance
448 size_t old_target = target_footprint_.load(std::memory_order_relaxed); in IsOutOfMemoryOnAllocation()464 if (target_footprint_.compare_exchange_weak(/*inout ref*/old_target, new_footprint, in IsOutOfMemoryOnAllocation()
350 target_footprint_(initial_size), in Heap()780 CHECK_NE(target_footprint_.load(std::memory_order_relaxed), 0U); in Heap()1107 size_t orig_target_footprint = target_footprint_.load(std::memory_order_relaxed); in GrowHeapOnJankPerceptibleSwitch()1109 target_footprint_.compare_exchange_strong(orig_target_footprint, in GrowHeapOnJankPerceptibleSwitch()1516 << " target footprint " << target_footprint_.load(std::memory_order_relaxed) in ThrowOutOfMemoryError()1566 (UnsignedDifference(target_footprint_.load(std::memory_order_relaxed), in DoPendingCollectorTransition()2286 size_t target_footprint = target_footprint_.load(std::memory_order_relaxed); in SetDefaultConcurrentStartBytesLocked()3715 GetFreeMemory()) / target_footprint_.load(std::memory_order_relaxed)); in GetPercentFree()3724 target_footprint_.store(target_footprint, std::memory_order_relaxed); in SetIdealFootprint()3800 size_t target_footprint = target_footprint_.load(std::memory_order_relaxed); in GrowForUtilization()[all …]
614 return UnsignedDifference(target_footprint_.load(std::memory_order_relaxed), in GetFreeMemoryUntilGC()1309 return target_footprint_.load(std::memory_order_relaxed) / 8 + max_free_; in NativeAllocationGcWatermark()1483 Atomic<size_t> target_footprint_; variable