Home | History | Annotate | Download | only in gc

Lines Matching defs:remaining_bytes

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