Home
last modified time | relevance | path

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

/art/runtime/gc/
Dheap.cc93 max_allowed_footprint_(initial_size), in Heap()
229 concurrent_start_bytes_ = max_allowed_footprint_; in Heap()
240 CHECK_NE(max_allowed_footprint_, 0U); in Heap()
815 if (UNLIKELY(new_footprint > max_allowed_footprint_)) { in IsOutOfMemoryOnAllocation()
823 max_allowed_footprint_ = new_footprint; in IsOutOfMemoryOnAllocation()
1776 max_allowed_footprint_ = max_allowed_footprint; in SetIdealFootprint()
1812 if (bytes_allocated + min_free_ <= max_allowed_footprint_) { in GrowForUtilization()
1819 if (bytes_allocated + max_free_ < max_allowed_footprint_) { in GrowForUtilization()
1822 target_size = std::max(bytes_allocated, max_allowed_footprint_); in GrowForUtilization()
1837 if (UNLIKELY(remaining_bytes > max_allowed_footprint_)) { in GrowForUtilization()
[all …]
Dheap.h587 size_t max_allowed_footprint_; variable