Lines Matching refs:deltaToVsync
518 const nsecs_t deltaToVsync = refreshRate.getPeriodNsecs() > 0 in classifyJankLocked() local
541 if (deltaToVsync < mJankClassificationThresholds.presentThreshold || in classifyJankLocked()
542 deltaToVsync >= refreshRate.getPeriodNsecs() - in classifyJankLocked()
579 if (deltaToVsync < mJankClassificationThresholds.presentThreshold || in classifyJankLocked()
580 deltaToVsync >= refreshRate.getPeriodNsecs() - in classifyJankLocked()
886 void FrameTimeline::DisplayFrame::classifyJank(nsecs_t& deadlineDelta, nsecs_t& deltaToVsync, in classifyJank() argument
894 deltaToVsync = 0; in classifyJank()
912 deltaToVsync = mRefreshRate.getPeriodNsecs() > 0 in classifyJank()
942 if (deltaToVsync < mJankClassificationThresholds.presentThreshold || in classifyJank()
943 deltaToVsync >= (mRefreshRate.getPeriodNsecs() - in classifyJank()
971 if (deltaToVsync < mJankClassificationThresholds.presentThreshold || in classifyJank()
972 deltaToVsync >= (mRefreshRate.getPeriodNsecs() - in classifyJank()
1013 nsecs_t deltaToVsync = 0; in onPresent() local
1014 classifyJank(deadlineDelta, deltaToVsync, previousPresentTime); in onPresent()
1017 surfaceFrame->onPresent(signalTime, mJankType, mRefreshRate, deadlineDelta, deltaToVsync); in onPresent()
1265 std::chrono::nanoseconds deltaToVsync(std::abs(presentDelta) % mRefreshRate.getPeriodNsecs()); in dump() local
1267 std::chrono::duration<double, std::milli>(deltaToVsync).count()); in dump()