Home
last modified time | relevance | path

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

/external/skia/src/utils/
DSkInterpolator.cpp86 SkMSec offsetTime = time - startTime; in timeToT() local
88 if (offsetTime >= endTime) { in timeToT()
90 offsetTime = fraction == 0 && fRepeat > 0 ? totalTime : in timeToT()
95 offsetTime = offsetTime % (totalTime << mirror); in timeToT()
96 if (offsetTime > totalTime) { // can only be true if fMirror is true in timeToT()
97 offsetTime = (totalTime << 1) - offsetTime; in timeToT()
100 time = offsetTime + startTime; in timeToT()
/external/webkit/JavaScriptCore/runtime/
DDateMath.cpp420 double offsetTime = (localTimeSeconds * msPerSecond) + utcOffset; in getDSTOffsetSimple() local
423 int offsetHour = msToHours(offsetTime); in getDSTOffsetSimple()
424 int offsetMinute = msToMinutes(offsetTime); in getDSTOffsetSimple()