Home
last modified time | relevance | path

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

/art/runtime/gc/
Dheap.cc3523 uint64_t target_size, grow_bytes; in GrowForUtilization() local
3533 grow_bytes = std::min(delta, static_cast<uint64_t>(max_free_)); in GrowForUtilization()
3534 grow_bytes = std::max(grow_bytes, static_cast<uint64_t>(min_free_)); in GrowForUtilization()
3535 target_size = bytes_allocated + static_cast<uint64_t>(grow_bytes * multiplier); in GrowForUtilization()
3568 grow_bytes = max_free_; in GrowForUtilization()
3572 grow_bytes = 0; in GrowForUtilization()
3583 (multiplier <= 1.0 && grow_bytes > 0) in GrowForUtilization()
3584 ? bytes_allocated + static_cast<size_t>(grow_bytes * foreground_heap_growth_multiplier_) in GrowForUtilization()