Home
last modified time | relevance | path

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

/art/runtime/gc/
Dheap.cc3478 void Heap::SetIdealFootprint(size_t target_footprint) { in SetIdealFootprint() argument
3479 if (target_footprint > GetMaxMemory()) { in SetIdealFootprint()
3480 VLOG(gc) << "Clamp target GC heap from " << PrettySize(target_footprint) << " to " in SetIdealFootprint()
3482 target_footprint = GetMaxMemory(); in SetIdealFootprint()
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() local
3559 bytes_allocated <= (IsGcConcurrent() ? concurrent_start_bytes_ : target_footprint)) { in GrowForUtilization()
3566 if (bytes_allocated + adjusted_max_free < target_footprint) { in GrowForUtilization()
3570 target_size = std::max(bytes_allocated, target_footprint); in GrowForUtilization()
3601 size_t target_footprint = target_footprint_.load(std::memory_order_relaxed); in GrowForUtilization() local
[all …]