Lines Matching defs:duration

384   double duration = current_.end_time - current_.start_time;
386 static_cast<int64_t>(duration * base::Time::kMicrosecondsPerMillisecond);
391 MakeBytesAndDuration(current_.young_object_size, duration));
393 MakeBytesAndDuration(current_.survived_young_object_size, duration));
400 MakeBytesAndDuration(current_.end_object_size, duration));
403 MakeBytesAndDuration(current_.end_object_size, duration));
406 duration + incremental_marking_duration_);
412 heap_->UpdateTotalGCTime(duration);
448 current_.scopes[i] = incremental_scopes_[i].duration;
604 double duration = current_ms - allocation_time_ms_;
609 allocation_duration_since_gc_ += duration;
634 void GCTracer::AddCompactionEvent(double duration,
637 MakeBytesAndDuration(live_bytes_compacted, duration));
644 void GCTracer::AddIncrementalMarkingStep(double duration, size_t bytes) {
647 incremental_marking_duration_ += duration;
649 ReportIncrementalMarkingStepToRecorder(duration);
652 void GCTracer::AddIncrementalSweepingStep(double duration) {
653 ReportIncrementalSweepingStepToRecorder(duration);
676 double duration = current_.end_time - current_.start_time;
713 static_cast<double>(current_.end_memory_size) / MB, duration,
722 double duration = current_.end_time - current_.start_time;
784 duration, spent_in_mutator, current_.TypeName(true),
849 duration, spent_in_mutator, "mmc", current_.reduce_memory,
970 duration, spent_in_mutator, current_.TypeName(true),
1085 void GCTracer::RecordIncrementalMarkingSpeed(size_t bytes, double duration) {
1086 if (duration == 0 || bytes == 0) return;
1087 double current_speed = bytes / duration;
1109 void GCTracer::RecordEmbedderSpeed(size_t bytes, double duration) {
1110 if (duration == 0 || bytes == 0) return;
1111 double current_speed = bytes / duration;
1123 // because we cannot compute the mutator duration.
1381 incremental_scopes_[Scope::MC_INCREMENTAL_LAYOUT_CHANGE].duration +
1382 incremental_scopes_[Scope::MC_INCREMENTAL_START].duration +
1384 incremental_scopes_[Scope::MC_INCREMENTAL_FINALIZE].duration;
1386 incremental_scopes_[Scope::MC_INCREMENTAL_SWEEPING].duration;
1405 "duration", overall_duration, "background_duration",
1409 TRACE_EVENT_SCOPE_THREAD, "duration", marking_duration,
1541 .duration +
1542 current_.incremental_scopes[Scope::MC_INCREMENTAL_START].duration +
1544 current_.incremental_scopes[Scope::MC_INCREMENTAL_FINALIZE].duration;
1546 current_.incremental_scopes[Scope::MC_INCREMENTAL_SWEEPING].duration;