Home
last modified time | relevance | path

Searched refs:maxChecks (Results 1 – 2 of 2) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
DGraggBulirschStoerIntegrator.java122 private int maxChecks; field in GraggBulirschStoerIntegrator
222 this.maxChecks = (maxNumChecks <= 0) ? 1 : maxNumChecks; in setStabilityCheck()
495 if (performTest && (j <= maxChecks) && (k < maxIter)) { in tryStep()
/external/skia/src/core/
DSkPathMeasure.cpp413 int maxChecks = 10000000; // set to INT_MAX to defeat the check in buildSegments() local
420 while (s < stop - 1 && s[0].fPtIndex == s[1].fPtIndex && --maxChecks > 0) { in buildSegments()