Searched refs:remaining_bytes (Results 1 - 3 of 3) sorted by relevance

/art/runtime/gc/
H A Dheap.cc3499 size_t remaining_bytes = bytes_allocated_during_gc; local
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,
[all...]
/art/compiler/optimizing/
H A Dintrinsics_arm64.cc1646 size_t remaining_bytes = local
1650 while (remaining_bytes > sizeof(uint64_t)) {
1658 remaining_bytes -= 2u * sizeof(uint64_t);
1660 if (remaining_bytes != 0u) {
H A Dintrinsics_arm_vixl.cc1885 size_t remaining_bytes = local
1887 while (remaining_bytes > sizeof(uint32_t)) {
1898 remaining_bytes -= 2u * sizeof(uint32_t);
1900 if (remaining_bytes != 0u) {

Completed in 531 milliseconds