Lines Matching refs:deltaToVsync
513 const nsecs_t deltaToVsync = refreshRate.getPeriodNsecs() > 0 in classifyJankLocked() local
536 if (deltaToVsync < mJankClassificationThresholds.presentThreshold || in classifyJankLocked()
537 deltaToVsync >= refreshRate.getPeriodNsecs() - in classifyJankLocked()
574 if (deltaToVsync < mJankClassificationThresholds.presentThreshold || in classifyJankLocked()
575 deltaToVsync >= refreshRate.getPeriodNsecs() - in classifyJankLocked()
878 void FrameTimeline::DisplayFrame::classifyJank(nsecs_t& deadlineDelta, nsecs_t& deltaToVsync, in classifyJank() argument
886 deltaToVsync = 0; in classifyJank()
904 deltaToVsync = mRefreshRate.getPeriodNsecs() > 0 in classifyJank()
934 if (deltaToVsync < mJankClassificationThresholds.presentThreshold || in classifyJank()
935 deltaToVsync >= (mRefreshRate.getPeriodNsecs() - in classifyJank()
963 if (deltaToVsync < mJankClassificationThresholds.presentThreshold || in classifyJank()
964 deltaToVsync >= (mRefreshRate.getPeriodNsecs() - in classifyJank()
1005 nsecs_t deltaToVsync = 0; in onPresent() local
1006 classifyJank(deadlineDelta, deltaToVsync, previousPresentTime); in onPresent()
1009 surfaceFrame->onPresent(signalTime, mJankType, mRefreshRate, deadlineDelta, deltaToVsync); in onPresent()
1245 std::chrono::nanoseconds deltaToVsync(std::abs(presentDelta) % mRefreshRate.getPeriodNsecs()); in dump() local
1247 std::chrono::duration<double, std::milli>(deltaToVsync).count()); in dump()