Searched refs:nextT (Results 1 - 12 of 12) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
H A DAdamsBashforthIntegrator.java295 final double nextT = stepStart + scaledH;
296 final boolean nextIsLast = forward ? (nextT >= t) : (nextT <= t);
H A DRungeKuttaIntegrator.java181 final double nextT = stepStart + stepSize;
182 final boolean nextIsLast = forward ? (nextT >= t) : (nextT <= t);
H A DAdamsMoultonIntegrator.java314 final double nextT = stepStart + scaledH;
315 final boolean nextIsLast = forward ? (nextT >= t) : (nextT <= t);
H A DEmbeddedRungeKuttaIntegrator.java320 final double nextT = stepStart + scaledH;
321 final boolean nextIsLast = forward ? (nextT >= t) : (nextT <= t);
H A DGraggBulirschStoerIntegrator.java669 final double nextT = stepStart + stepSize;
670 isLastStep = forward ? (nextT >= t) : (nextT <= t);
/external/skia/src/effects/gradients/
H A DSkTwoPointConicalGradient.cpp20 SkFixed nextT();
107 SkFixed TwoPtRadialContext::nextT() { function in class:TwoPtRadialContext
142 SkFixed t = rec->nextT();
159 SkFixed t = rec->nextT();
176 SkFixed t = rec->nextT();
/external/skia/src/utils/
H A DSkInterpolator.cpp117 SkMSec nextT = nextTime[0].fTime;
122 *T = ComputeRelativeT(time, prevT, nextT, nextTime[-1].fBlend);
/external/skia/src/pathops/
H A DSkOpSpan.h415 void setNext(SkOpSpanBase* nextT) { argument
417 fNext = nextT;
H A DSkPathOpsCubic.cpp55 double nextT = t + lastStep; local
56 if (nextT > max) {
59 SkDPoint morePt = ptAtT(nextT);
68 t = nextT;
/external/apache-commons-math/src/main/java/org/apache/commons/math/random/
H A DRandomDataImpl.java657 public double nextT(double df) throws MathException { method in class:RandomDataImpl
/external/skia/src/core/
H A DSkStroke.cpp1414 SkScalar nextT = index < count ? tValues[index] : 1;
1416 this->init(kOuter_StrokeType, &quadPts, lastT, nextT);
1418 this->init(kInner_StrokeType, &quadPts, lastT, nextT);
1420 lastT = nextT;
/external/slf4j/log4j-over-slf4j/compatibility/lib/
H A Dlog4j-1.3alpha-8.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/log4j/ org/apache/log4j/Appender ...

Completed in 740 milliseconds