Home | History | Annotate | Download | only in gc

Lines Matching refs:remaining_bytes

1835       size_t remaining_bytes = allocation_rate_ * gc_duration_seconds;
1836 remaining_bytes = std::max(remaining_bytes, kMinConcurrentRemainingBytes);
1837 if (UNLIKELY(remaining_bytes > max_allowed_footprint_)) {
1844 // allocation rate is very high, remaining_bytes could tell us that we should start a GC
1846 concurrent_start_bytes_ = std::max(max_allowed_footprint_ - remaining_bytes, bytes_allocated);