Lines Matching refs:deltaToVsync
576 const nsecs_t deltaToVsync = refreshRate.getPeriodNsecs() > 0 in classifyJankLocked() local
608 if (deltaToVsync < mJankClassificationThresholds.presentThreshold || in classifyJankLocked()
609 deltaToVsync >= refreshRate.getPeriodNsecs() - in classifyJankLocked()
646 if (deltaToVsync < mJankClassificationThresholds.presentThreshold || in classifyJankLocked()
647 deltaToVsync >= refreshRate.getPeriodNsecs() - in classifyJankLocked()
976 void FrameTimeline::DisplayFrame::classifyJank(nsecs_t& deadlineDelta, nsecs_t& deltaToVsync, in classifyJank() argument
986 deltaToVsync = 0; in classifyJank()
1009 deltaToVsync = mRefreshRate.getPeriodNsecs() > 0 in classifyJank()
1044 if (deltaToVsync < mJankClassificationThresholds.presentThreshold || in classifyJank()
1045 deltaToVsync >= (mRefreshRate.getPeriodNsecs() - in classifyJank()
1073 if (deltaToVsync < mJankClassificationThresholds.presentThreshold || in classifyJank()
1074 deltaToVsync >= (mRefreshRate.getPeriodNsecs() - in classifyJank()
1112 nsecs_t deltaToVsync = 0; in onPresent() local
1113 classifyJank(deadlineDelta, deltaToVsync, previousPresentTime); in onPresent()
1117 deltaToVsync); in onPresent()
1478 std::chrono::nanoseconds deltaToVsync(std::abs(presentDelta) % mRefreshRate.getPeriodNsecs()); in dump() local
1480 std::chrono::duration<double, std::milli>(deltaToVsync).count()); in dump()