Lines Matching refs:max_allowed_footprint_
93 max_allowed_footprint_(initial_size),
229 concurrent_start_bytes_ = max_allowed_footprint_;
240 CHECK_NE(max_allowed_footprint_, 0U);
815 if (UNLIKELY(new_footprint > max_allowed_footprint_)) {
823 max_allowed_footprint_ = new_footprint;
1776 max_allowed_footprint_ = max_allowed_footprint;
1812 if (bytes_allocated + min_free_ <= max_allowed_footprint_) {
1819 if (bytes_allocated + max_free_ < max_allowed_footprint_) {
1822 target_size = std::max(bytes_allocated, max_allowed_footprint_);
1837 if (UNLIKELY(remaining_bytes > max_allowed_footprint_)) {
1846 concurrent_start_bytes_ = std::max(max_allowed_footprint_ - remaining_bytes, bytes_allocated);
1848 DCHECK_LE(concurrent_start_bytes_, max_allowed_footprint_);
1849 DCHECK_LE(max_allowed_footprint_, growth_limit_);