Home | History | Annotate | Download | only in gc

Lines Matching defs:remaining_bytes

3499       size_t remaining_bytes = bytes_allocated_during_gc;
3500 remaining_bytes = std::min(remaining_bytes, kMaxConcurrentRemainingBytes);
3501 remaining_bytes = std::max(remaining_bytes, kMinConcurrentRemainingBytes);
3502 if (UNLIKELY(remaining_bytes > max_allowed_footprint_)) {
3506 remaining_bytes = kMinConcurrentRemainingBytes;
3508 DCHECK_LE(remaining_bytes, max_allowed_footprint_);
3511 // allocation rate is very high, remaining_bytes could tell us that we should start a GC
3513 concurrent_start_bytes_ = std::max(max_allowed_footprint_ - remaining_bytes,