Home
last modified time | relevance | path

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

/aosp_15_r20/art/runtime/gc/
H A Dheap.cc354 concurrent_start_bytes_(std::numeric_limits<size_t>::max()), in Heap()
778 concurrent_start_bytes_ = std::numeric_limits<size_t>::max(); in Heap()
1113 if (IsGcConcurrent() && concurrent_start_bytes_ < min_foreground_concurrent_start_bytes_) { in GrowHeapOnJankPerceptibleSwitch()
1114 concurrent_start_bytes_ = min_foreground_concurrent_start_bytes_; in GrowHeapOnJankPerceptibleSwitch()
2305 concurrent_start_bytes_ = UnsignedDifference(target_footprint, reserve_bytes); in SetDefaultConcurrentStartBytesLocked()
2307 concurrent_start_bytes_ = std::numeric_limits<size_t>::max(); in SetDefaultConcurrentStartBytesLocked()
3821 bytes_allocated <= (IsGcConcurrent() ? concurrent_start_bytes_ : target_footprint)) { in GrowForUtilization()
3882 concurrent_start_bytes_ = std::max(target_footprint - remaining_bytes, bytes_allocated); in GrowForUtilization()
4226 ? concurrent_start_bytes_ in NativeMemoryOverTarget()
H A Dheap-inl.h482 return new_num_bytes_allocated >= concurrent_start_bytes_; in ShouldConcurrentGCForJava()
H A Dheap.h1502 size_t concurrent_start_bytes_; variable