Home | History | Annotate | Download | only in gc

Lines Matching defs:remaining_bytes

3610       size_t remaining_bytes = bytes_allocated_during_gc * gc_duration_seconds;
3611 remaining_bytes = std::min(remaining_bytes, kMaxConcurrentRemainingBytes);
3612 remaining_bytes = std::max(remaining_bytes, kMinConcurrentRemainingBytes);
3613 if (UNLIKELY(remaining_bytes > max_allowed_footprint_)) {
3617 remaining_bytes = kMinConcurrentRemainingBytes;
3619 DCHECK_LE(remaining_bytes, max_allowed_footprint_);
3622 // allocation rate is very high, remaining_bytes could tell us that we should start a GC
3624 concurrent_start_bytes_ = std::max(max_allowed_footprint_ - remaining_bytes,