Home
last modified time | relevance | path

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

/art/runtime/gc/
Dheap.cc3552 uint64_t target_size, grow_bytes; in GrowForUtilization() local
3562 grow_bytes = std::min(delta, static_cast<uint64_t>(max_free_)); in GrowForUtilization()
3563 grow_bytes = std::max(grow_bytes, static_cast<uint64_t>(min_free_)); in GrowForUtilization()
3564 target_size = bytes_allocated + static_cast<uint64_t>(grow_bytes * multiplier); in GrowForUtilization()
3597 grow_bytes = max_free_; in GrowForUtilization()
3601 grow_bytes = 0; in GrowForUtilization()
3612 (multiplier <= 1.0 && grow_bytes > 0) in GrowForUtilization()
3613 ? bytes_allocated + static_cast<size_t>(grow_bytes * foreground_heap_growth_multiplier_) in GrowForUtilization()