Lines Matching refs:max_allowed_footprint_
154 max_allowed_footprint_(initial_size),
416 CHECK_NE(max_allowed_footprint_, 0U);
1840 std::max(max_allowed_footprint_, kMinConcurrentRemainingBytes) - kMinConcurrentRemainingBytes;
2874 return static_cast<size_t>(100.0f * static_cast<float>(GetFreeMemory()) / max_allowed_footprint_);
2883 max_allowed_footprint_ = max_allowed_footprint;
2961 bytes_allocated <= max_allowed_footprint_) {
2967 if (bytes_allocated + max_free_ < max_allowed_footprint_) {
2970 target_size = std::max(bytes_allocated, static_cast<uint64_t>(max_allowed_footprint_));
2983 if (UNLIKELY(remaining_bytes > max_allowed_footprint_)) {
2989 DCHECK_LE(remaining_bytes, max_allowed_footprint_);
2990 DCHECK_LE(max_allowed_footprint_, GetMaxMemory());
2994 concurrent_start_bytes_ = std::max(max_allowed_footprint_ - remaining_bytes,
3233 return std::max(max_allowed_footprint_, GetBytesAllocated());