Lines Matching refs:max_allowed_footprint_
93 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()
1846 … concurrent_start_bytes_ = std::max(max_allowed_footprint_ - remaining_bytes, bytes_allocated); in GrowForUtilization()
1848 DCHECK_LE(concurrent_start_bytes_, max_allowed_footprint_); in GrowForUtilization()
1849 DCHECK_LE(max_allowed_footprint_, growth_limit_); in GrowForUtilization()