Home
last modified time | relevance | path

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

/art/runtime/gc/
Dheap-inl.h407 if (UNLIKELY(new_footprint > max_allowed_footprint_)) { in IsOutOfMemoryOnAllocation()
416 VLOG(heap) << "Growing heap from " << PrettySize(max_allowed_footprint_) << " to " in IsOutOfMemoryOnAllocation()
418 max_allowed_footprint_ = new_footprint; in IsOutOfMemoryOnAllocation()
Dheap.cc155 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()
[all …]
Dheap.h468 return max_allowed_footprint_ - GetBytesAllocated(); in GetFreeMemoryUntilGC()
1004 size_t max_allowed_footprint_; variable