Home
last modified time | relevance | path

Searched refs:NsToMs (Results 1 – 7 of 7) sorted by relevance

/art/runtime/gc/collector/
Dgarbage_collector.cc56 return (static_cast<uint64_t>(freed_.bytes) * 1000) / (NsToMs(GetDurationNs()) + 1); in GetEstimatedThroughput()
143 return (total_freed_bytes_ * 1000) / (NsToMs(GetCumulativeTimings().GetTotalNs()) + 1); in GetEstimatedMeanThroughput()
197 double seconds = NsToMs(logger.GetTotalNs()) / 1000.0; in DumpPerformanceInfo()
/art/runtime/base/
Dtime_utils.h66 static constexpr inline uint64_t NsToMs(uint64_t ns) { in NsToMs() function
/art/runtime/native/
Ddalvik_system_VMDebug.cc382 std::string output = std::to_string(NsToMs(heap->GetGcTime())); in VMDebug_getRuntimeStatInternal()
398 std::string output = std::to_string(NsToMs(heap->GetBlockingGcTime())); in VMDebug_getRuntimeStatInternal()
440 std::to_string(NsToMs(heap->GetGcTime())))) { in VMDebug_getRuntimeStatsInternal()
456 std::to_string(NsToMs(heap->GetBlockingGcTime())))) { in VMDebug_getRuntimeStatsInternal()
/art/runtime/jit/
Dprofile_saver.cc96 period_condition_.TimedWait(self, NsToMs(end_time - current_time), 0); in Run()
123 period_condition_.TimedWait(self, NsToMs(kMinSavePeriodNs - sleep_time), 0); in Run()
133 total_ms_of_sleep_ += NsToMs(NanoTime() - sleep_start); in Run()
650 << "ProfileSaver total_ms_of_work=" << NsToMs(total_ns_of_work_) << '\n' in DumpInfo()
/art/runtime/gc/
Dtask_processor.cc66 const uint64_t ms_delta = NsToMs(delta_time); in GetTask()
Dheap.cc1179 os << "Histogram of GC count per " << NsToMs(kGcCountRateHistogramWindowDuration) << " ms: "; in DumpGcPerformanceInfo()
1185 << NsToMs(kGcCountRateHistogramWindowDuration) << " ms: "; in DumpGcPerformanceInfo()
3607 const double gc_duration_seconds = NsToMs(current_gc_iteration_.GetDurationNs()) / 1000.0; in GrowForUtilization()
/art/cmdline/
Dcmdline_types.h332 return NsToMs(nanoseconds_);