Lines Matching refs:max_allowed_footprint_
155 max_allowed_footprint_(initial_size), in Heap()
474 CHECK_NE(max_allowed_footprint_, 0U); in Heap()
2068 … std::max(max_allowed_footprint_, kMinConcurrentRemainingBytes) - kMinConcurrentRemainingBytes; in ChangeCollector()
3218 return static_cast<size_t>(100.0f * static_cast<float>(GetFreeMemory()) / max_allowed_footprint_); in GetPercentFree()
3227 max_allowed_footprint_ = max_allowed_footprint; in SetIdealFootprint()
3304 bytes_allocated <= max_allowed_footprint_) { in GrowForUtilization()
3310 if (bytes_allocated + adjusted_max_free < max_allowed_footprint_) { in GrowForUtilization()
3313 target_size = std::max(bytes_allocated, static_cast<uint64_t>(max_allowed_footprint_)); in GrowForUtilization()
3334 if (UNLIKELY(remaining_bytes > max_allowed_footprint_)) { in GrowForUtilization()
3340 DCHECK_LE(remaining_bytes, max_allowed_footprint_); in GrowForUtilization()
3341 DCHECK_LE(max_allowed_footprint_, GetMaxMemory()); in GrowForUtilization()
3345 concurrent_start_bytes_ = std::max(max_allowed_footprint_ - remaining_bytes, in GrowForUtilization()
3649 return std::max(max_allowed_footprint_, GetBytesAllocated()); in GetTotalMemory()