HomeSort by relevance Sort by last modified time
    Searched defs:nextT (Results 1 - 8 of 8) 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/effects/gradients/
SkTwoPointConicalGradient.cpp 20 SkFixed nextT();
107 SkFixed TwoPtRadialContext::nextT() {
142 SkFixed t = rec->nextT();
159 SkFixed t = rec->nextT();
176 SkFixed t = rec->nextT();
  /external/skia/src/pathops/
SkPathOpsCubic.cpp 55 double nextT = t + lastStep;
56 if (nextT > max) {
59 SkDPoint morePt = ptAtT(nextT);
68 t = nextT;
  /external/slf4j/log4j-over-slf4j/compatibility/lib/
log4j-1.3alpha-8.jar 

Completed in 660 milliseconds