Home
last modified time | relevance | path

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

/art/runtime/gc/
Dheap-inl.h480 return new_num_bytes_allocated >= concurrent_start_bytes_; in ShouldConcurrentGCForJava()
Dheap.cc356 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()
2290 concurrent_start_bytes_ = UnsignedDifference(target_footprint, reserve_bytes); in SetDefaultConcurrentStartBytesLocked()
2292 concurrent_start_bytes_ = std::numeric_limits<size_t>::max(); in SetDefaultConcurrentStartBytesLocked()
3804 bytes_allocated <= (IsGcConcurrent() ? concurrent_start_bytes_ : target_footprint)) { in GrowForUtilization()
3865 concurrent_start_bytes_ = std::max(target_footprint - remaining_bytes, bytes_allocated); in GrowForUtilization()
4207 ? concurrent_start_bytes_ in NativeMemoryOverTarget()
Dheap.h1500 size_t concurrent_start_bytes_; variable