Home
last modified time | relevance | path

Searched refs:nextTime (Results 1 – 5 of 5) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/sampling/
DStepNormalizer.java133 double nextTime = lastTime + h; in handleStep() local
134 boolean nextInStep = forward ^ (nextTime > interpolator.getCurrentTime()); in handleStep()
141 lastTime = nextTime; in handleStep()
148 nextTime += h; in handleStep()
149 nextInStep = forward ^ (nextTime > interpolator.getCurrentTime()); in handleStep()
/external/skia/src/utils/
DSkInterpolator.cpp62 SkMSec nextTime, const SkScalar blend[4]) { in ComputeRelativeT() argument
63 SkASSERT(time > prevTime && time < nextTime); in ComputeRelativeT()
65 SkScalar t = (SkScalar)(time - prevTime) / (SkScalar)(nextTime - prevTime); in ComputeRelativeT()
116 const SkTimeCode* nextTime = &fTimes[index]; in timeToT() local
117 SkMSec nextT = nextTime[0].fTime; in timeToT()
121 SkMSec prevT = nextTime[-1].fTime; in timeToT()
122 *T = ComputeRelativeT(time, prevT, nextT, nextTime[-1].fBlend); in timeToT()
/external/jmonkeyengine/engine/src/test/jme3test/audio/
DTestReverb.java41 private float nextTime = 1; field in TestReverb
65 if (time > nextTime) { in simpleUpdate()
76 nextTime = FastMath.nextRandomFloat() * 2 + 0.5f; in simpleUpdate()
/external/jmonkeyengine/engine/src/android/jme3test/android/
DTestAmbient.java49 private float nextTime = 1; field in TestAmbient
/external/skia/include/utils/
DSkInterpolator.h71 SkMSec nextTime, const SkScalar blend[4] = NULL);