Searched defs:multiplier (Results 1 - 3 of 3) sorted by relevance

/art/dex2oat/
H A Ddex2oat.cc663 // TODO: tune the multiplier for GC verification, the following is just to make the timeout
665 int64_t multiplier = kVerifyObjectSupport > kVerifyObjectModeFast ? 100 : 1; local
667 InitTimeSpec(true, CLOCK_REALTIME, multiplier * kWatchDogWarningSeconds * 1000, 0, &warning_ts);
669 InitTimeSpec(true, CLOCK_REALTIME, multiplier * kWatchDogTimeoutSeconds * 1000, 0, &timeout_ts);
/art/runtime/
H A Dutils.cc546 uint64_t multiplier = 10; local
548 while (avail_digits > 1 && fractional_part * multiplier < divisor) {
549 multiplier *= 10;
/art/runtime/gc/
H A Dheap.cc2872 const float multiplier = HeapGrowthMultiplier(); // Use the multiplier to grow more for local
2876 target_size = bytes_allocated + delta * multiplier;
2878 bytes_allocated + static_cast<uint64_t>(max_free_ * multiplier));
2880 bytes_allocated + static_cast<uint64_t>(min_free_ * multiplier));

Completed in 178 milliseconds