Home
last modified time | relevance | path

Searched refs:offsetTime (Results 1 – 3 of 3) sorted by relevance

/external/skqp/src/utils/
DSkInterpolator.cpp80 SkMSec offsetTime = time - startTime; in timeToT() local
82 if (offsetTime >= endTime) { in timeToT()
84 offsetTime = fraction == 0 && fRepeat > 0 ? totalTime : in timeToT()
89 offsetTime = offsetTime % (totalTime << mirror); in timeToT()
90 if (offsetTime > totalTime) { // can only be true if fMirror is true in timeToT()
91 offsetTime = (totalTime << 1) - offsetTime; in timeToT()
94 time = offsetTime + startTime; in timeToT()
/external/skia/src/utils/
DSkInterpolator.cpp80 SkMSec offsetTime = time - startTime; in timeToT() local
82 if (offsetTime >= endTime) { in timeToT()
84 offsetTime = fraction == 0 && fRepeat > 0 ? totalTime : in timeToT()
89 offsetTime = offsetTime % (totalTime << mirror); in timeToT()
90 if (offsetTime > totalTime) { // can only be true if fMirror is true in timeToT()
91 offsetTime = (totalTime << 1) - offsetTime; in timeToT()
94 time = offsetTime + startTime; in timeToT()
/external/perfetto/ui/src/frontend/
Dtime_axis_panel.ts37 const offsetTime = constant
39 ctx.fillText(offsetTime, TRACK_SHELL_WIDTH - 6, 11);