Home
last modified time | relevance | path

Searched refs:remaining_bytes (Results 1 – 2 of 2) sorted by relevance

/art/runtime/gc/
Dheap.cc3635 size_t remaining_bytes = bytes_allocated_during_gc * gc_duration_seconds; in GrowForUtilization() local
3636 remaining_bytes = std::min(remaining_bytes, kMaxConcurrentRemainingBytes); in GrowForUtilization()
3637 remaining_bytes = std::max(remaining_bytes, kMinConcurrentRemainingBytes); in GrowForUtilization()
3638 if (UNLIKELY(remaining_bytes > max_allowed_footprint_)) { in GrowForUtilization()
3642 remaining_bytes = kMinConcurrentRemainingBytes; in GrowForUtilization()
3644 DCHECK_LE(remaining_bytes, max_allowed_footprint_); in GrowForUtilization()
3649 concurrent_start_bytes_ = std::max(max_allowed_footprint_ - remaining_bytes, in GrowForUtilization()
/art/compiler/optimizing/
Dintrinsics_arm64.cc1594 size_t remaining_bytes = in VisitStringEquals() local
1598 while (remaining_bytes > 8u) { in VisitStringEquals()
1606 remaining_bytes -= 2u * sizeof(uint64_t); in VisitStringEquals()
1608 if (remaining_bytes != 0u) { in VisitStringEquals()