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

  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
RungeKuttaIntegrator.java 181 final double nextT = stepStart + stepSize;
182 final boolean nextIsLast = forward ? (nextT >= t) : (nextT <= t);
AdamsBashforthIntegrator.java 295 final double nextT = stepStart + scaledH;
296 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/src/pathops/
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/slf4j/log4j-over-slf4j/compatibility/lib/
log4j-1.3alpha-8.jar 

Completed in 1572 milliseconds