HomeSort by relevance Sort by last modified time
    Searched refs:nextT (Results 1 - 14 of 14) sorted by null

  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
AdamsBashforthIntegrator.java 295 final double nextT = stepStart + scaledH;
296 final boolean nextIsLast = forward ? (nextT >= t) : (nextT <= t);
RungeKuttaIntegrator.java 181 final double nextT = stepStart + stepSize;
182 final boolean nextIsLast = forward ? (nextT >= t) : (nextT <= t);
AdamsMoultonIntegrator.java 314 final double nextT = stepStart + scaledH;
315 final boolean nextIsLast = forward ? (nextT >= t) : (nextT <= t);
EmbeddedRungeKuttaIntegrator.java 320 final double nextT = stepStart + scaledH;
321 final boolean nextIsLast = forward ? (nextT >= t) : (nextT <= t);
GraggBulirschStoerIntegrator.java 669 final double nextT = stepStart + stepSize;
670 isLastStep = forward ? (nextT >= t) : (nextT <= t);
    [all...]
  /external/skia/fuzz/
Fuzz.h 54 T nextT();
  /external/skia/src/utils/
SkInterpolator.cpp 118 SkMSec nextT = nextTime[0].fTime;
123 *T = ComputeRelativeT(time, prevT, nextT, nextTime[-1].fBlend);
  /external/skia/src/pathops/
SkOpSpan.h 511 void setNext(SkOpSpanBase* nextT) {
513 fNext = nextT;
SkPathOpsCubic.cpp 55 double nextT = t + lastStep;
56 if (nextT > max) {
59 SkDPoint morePt = ptAtT(nextT);
68 t = nextT;
SkOpCoincidence.cpp 457 double nextT, oNextT;
459 nextT = test->t();
462 nextT = containedThis->fT;
474 nextT = walk->t();
478 double startRange = nextT - priorT;
    [all...]
SkPathOpsDebug.cpp     [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
RandomDataImpl.java 657 public double nextT(double df) throws MathException {
    [all...]
  /external/skia/src/core/
SkStroke.cpp     [all...]
  /external/slf4j/log4j-over-slf4j/compatibility/lib/
log4j-1.3alpha-8.jar 

Completed in 216 milliseconds