Searched refs:max_gc_requested_ (Results 1 – 2 of 2) sorted by relevance
409 max_gc_requested_(0u), in Heap()3974 uint32_t max_gc_requested = max_gc_requested_.load(std::memory_order_relaxed); in RequestConcurrentGC()3979 if (max_gc_requested_.CompareAndSetStrongRelaxed(max_gc_requested, observed_gc_num + 1)) { in RequestConcurrentGC()3985 DCHECK(GCNumberLt(observed_gc_num, max_gc_requested_.load(std::memory_order_relaxed))); in RequestConcurrentGC()4235 if (!GCNumberLt(GetCurrentGcNum(), max_gc_requested_.load(std::memory_order_relaxed)) in CheckGCForNative()4239 CHECK(GCNumberLt(starting_gc_num, max_gc_requested_.load(std::memory_order_relaxed))); in CheckGCForNative()
1680 Atomic<uint32_t> max_gc_requested_; variable