Lines Matching refs:duration
100 double duration = currentTimeInMs - allocTimeMs_;
106 allocDurationSinceGc_ += duration;
130 double duration = currentTimeInMs - allocTimeMsIdle_;
143 recordedIdleNewSpaceAllocations_.Push(MakeBytesAndDuration(newSpaceAllocSizeSinceIdle, duration));
144 recordedIdleOldSpaceAllocations_.Push(MakeBytesAndDuration(oldSpaceAllocSizeSinceIdle, duration));
183 double duration = gcEndTime_ - gcStartTime_;
189 duration += heap_->GetConcurrentMarker()->GetDuration();
191 recordedMarkCompacts_.Push(MakeBytesAndDuration(heap_->GetHeapObjectSize(), duration));
196 recordedMarkCompacts_.Push(MakeBytesAndDuration(heap_->GetHeapObjectSize(), duration));
212 double duration = marker->GetDuration();
214 recordedConcurrentMarks_.Push(MakeBytesAndDuration(marker->GetHeapObjectSize(), duration));
216 recordedSemiConcurrentMarks_.Push(MakeBytesAndDuration(marker->GetHeapObjectSize(), duration));
218 recordedEdenConcurrentMarks_.Push(MakeBytesAndDuration(marker->GetHeapObjectSize(), duration));
267 double duration = allocDurationSinceGc_;
269 MakeBytesAndDuration(allocatedSize, duration), timeMs);