Home | History | Annotate | Download | only in gc

Lines Matching refs:remaining_bytes

3492       size_t remaining_bytes = bytes_allocated_during_gc * gc_duration_seconds;
3493 remaining_bytes = std::min(remaining_bytes, kMaxConcurrentRemainingBytes);
3494 remaining_bytes = std::max(remaining_bytes, kMinConcurrentRemainingBytes);
3495 if (UNLIKELY(remaining_bytes > max_allowed_footprint_)) {
3499 remaining_bytes = kMinConcurrentRemainingBytes;
3501 DCHECK_LE(remaining_bytes, max_allowed_footprint_);
3504 // allocation rate is very high, remaining_bytes could tell us that we should start a GC
3506 concurrent_start_bytes_ = std::max(max_allowed_footprint_ - remaining_bytes,