Searched refs:remaining_bytes (Results 1 - 1 of 1) sorted by relevance

/art/runtime/gc/
H A Dheap.cc2915 size_t remaining_bytes = allocation_rate_ * gc_duration_seconds; local
2916 remaining_bytes = std::min(remaining_bytes, kMaxConcurrentRemainingBytes);
2917 remaining_bytes = std::max(remaining_bytes, kMinConcurrentRemainingBytes);
2918 if (UNLIKELY(remaining_bytes > max_allowed_footprint_)) {
2922 remaining_bytes = kMinConcurrentRemainingBytes;
2924 DCHECK_LE(remaining_bytes, max_allowed_footprint_);
2927 // allocation rate is very high, remaining_bytes could tell us that we should start a GC
2929 concurrent_start_bytes_ = std::max(max_allowed_footprint_ - remaining_bytes,
[all...]

Completed in 9 milliseconds