Home
last modified time | relevance | path

Searched refs:tol2 (Results 1 – 3 of 3) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/univariate/
DBrentOptimizer.java117 final double tol2 = 2 * tol1; in localMin() local
120 if (FastMath.abs(x - m) > tol2 - 0.5 * (b - a)) { in localMin()
149 if (u - a < tol2 || b - u < tol2) { in localMin()
/external/eigen/Eigen/src/IterativeLinearSolvers/
DBiCGSTAB.h62 RealScalar tol2 = tol*tol*rhs_sqnorm; in bicgstab() local
67 while ( r.squaredNorm() > tol2 && i<maxIters ) in bicgstab()
/external/skia/src/core/
DSkGeometry.cpp1179 SkScalar tol2 = tol * tol; in computeQuadPOW2() local
1180 if (tol2 == 0) { in computeQuadPOW2()
1183 SkScalar fpow2 = SkScalarLog2((x * x + y * y) / tol2) * 0.25f; in computeQuadPOW2()