Searched refs:hNew (Results 1 – 5 of 5) sorted by relevance
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/ |
D | AdamsBashforthIntegrator.java | 222 double hNew = stepSize; in integrate() local 223 interpolator.rescale(hNew); in integrate() 232 stepSize = hNew; in integrate() 249 hNew = filterStep(stepSize * factor, forward, false); in integrate() 250 interpolator.rescale(hNew); in integrate() 297 hNew = filterStep(scaledH, forward, nextIsLast); in integrate() 299 final double filteredNextT = stepStart + hNew; in integrate() 302 hNew = t - stepStart; in integrate() 305 interpolator.rescale(hNew); in integrate()
|
D | AdamsMoultonIntegrator.java | 240 double hNew = stepSize; in integrate() local 241 interpolator.rescale(hNew); in integrate() 249 stepSize = hNew; in integrate() 272 hNew = filterStep(stepSize * factor, forward, false); in integrate() 273 interpolator.rescale(hNew); in integrate() 316 hNew = filterStep(scaledH, forward, nextIsLast); in integrate() 318 final double filteredNextT = stepStart + hNew; in integrate() 321 hNew = t - stepStart; in integrate() 324 interpolator.rescale(hNew); in integrate()
|
D | GraggBulirschStoerIntegrator.java | 626 double hNew = 0; in integrate() local 653 hNew = initializeStep(equations, forward, in integrate() 662 stepSize = hNew; in integrate() 685 hNew = FastMath.abs(filterStep(stepSize * stabilityReduction, forward, false)); in integrate() 709 hNew = FastMath.abs(filterStep(stepSize * stabilityReduction, forward, false)); in integrate() 751 hNew = optimalStep[targetIter]; in integrate() 776 hNew = optimalStep[targetIter]; in integrate() 789 hNew = optimalStep[targetIter]; in integrate() 868 hNew = hInt; in integrate() 917 hNew = FastMath.min(FastMath.abs(stepSize), optimalStep[targetIter]); in integrate() [all …]
|
D | EmbeddedRungeKuttaIntegrator.java | 224 double hNew = 0; in integrate() local 257 hNew = initializeStep(equations, forward, getOrder(), scale, in integrate() 262 stepSize = hNew; in integrate() 295 hNew = filterStep(stepSize * factor, forward, false); in integrate() 322 hNew = filterStep(scaledH, forward, nextIsLast); in integrate() 324 final double filteredNextT = stepStart + hNew; in integrate() 327 hNew = t - stepStart; in integrate()
|
/external/pdfium/third_party/lcms/src/ |
D | cmsnamed.c | 924 cmsHANDLE hNew; in cmsDictDup() local 929 hNew = cmsDictAlloc(old_dict ->ContextID); in cmsDictDup() 930 if (hNew == NULL) return NULL; in cmsDictDup() 936 …if (!cmsDictAddEntry(hNew, entry ->Name, entry ->Value, entry ->DisplayName, entry ->DisplayValue)… in cmsDictDup() 938 cmsDictFree(hNew); in cmsDictDup() 945 return hNew; in cmsDictDup()
|