Home
last modified time | relevance | path

Searched refs:xLen (Results 1 – 8 of 8) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/
DSmoothingBicubicSplineInterpolator.java64 final int xLen = xval.length; in interpolate() local
71 final double[][] zX = new double[yLen][xLen]; in interpolate()
72 for (int i = 0; i < xLen; i++) { in interpolate()
93 final double[][] zY_1 = new double[xLen][yLen]; in interpolate()
96 for (int i = 0; i < xLen; i++) { in interpolate()
103 final PolynomialSplineFunction[] xSplineY = new PolynomialSplineFunction[xLen]; in interpolate()
104 for (int i = 0; i < xLen; i++) { in interpolate()
110 final double[][] zY_2 = new double[xLen][yLen]; in interpolate()
111 for (int i = 0; i < xLen; i++) { in interpolate()
119 final double[][] dZdX = new double[xLen][yLen]; in interpolate()
[all …]
DTricubicSplineInterpolator.java51 final int xLen = xval.length; in interpolate() local
58 final double[][][] fvalXY = new double[zLen][xLen][yLen]; in interpolate()
59 final double[][][] fvalZX = new double[yLen][zLen][xLen]; in interpolate()
60 for (int i = 0; i < xLen; i++) { in interpolate()
82 = new BicubicSplineInterpolatingFunction[xLen]; in interpolate()
83 for (int i = 0; i < xLen; i++) { in interpolate()
102 final double[][][] dFdX = new double[xLen][yLen][zLen]; in interpolate()
103 final double[][][] dFdY = new double[xLen][yLen][zLen]; in interpolate()
104 final double[][][] d2FdXdY = new double[xLen][yLen][zLen]; in interpolate()
107 for (int i = 0; i < xLen; i++) { in interpolate()
[all …]
DBicubicSplineInterpolator.java51 final int xLen = xval.length; in interpolate() local
58 final double[][] fX = new double[yLen][xLen]; in interpolate()
59 for (int i = 0; i < xLen; i++) { in interpolate()
80 final PolynomialSplineFunction[] xSplineY = new PolynomialSplineFunction[xLen]; in interpolate()
81 for (int i = 0; i < xLen; i++) { in interpolate()
86 final double[][] dFdX = new double[xLen][yLen]; in interpolate()
89 for (int i = 0; i < xLen; i++) { in interpolate()
95 final double[][] dFdY = new double[xLen][yLen]; in interpolate()
96 for (int i = 0; i < xLen; i++) { in interpolate()
104 final double[][] d2FdXdY = new double[xLen][yLen]; in interpolate()
[all …]
DSmoothingPolynomialBicubicSplineInterpolator.java85 final int xLen = xval.length; in interpolate() local
88 for (int i = 0; i < xLen; i++) { in interpolate()
102 for (int i = 0; i < xLen; i++) { in interpolate()
111 final double[][] fval_1 = new double[xLen][yLen]; in interpolate()
114 for (int i = 0; i < xLen; i++) { in interpolate()
121 final PolynomialFunction[] xPolyY = new PolynomialFunction[xLen]; in interpolate()
122 for (int i = 0; i < xLen; i++) { in interpolate()
133 final double[][] fval_2 = new double[xLen][yLen]; in interpolate()
134 for (int i = 0; i < xLen; i++) { in interpolate()
DTricubicSplineInterpolatingFunction.java156 final int xLen = x.length; in TricubicSplineInterpolatingFunction() local
160 if (xLen == 0 || yLen == 0 || z.length == 0 || f.length == 0 || f[0].length == 0) { in TricubicSplineInterpolatingFunction()
163 if (xLen != f.length) { in TricubicSplineInterpolatingFunction()
164 throw new DimensionMismatchException(xLen, f.length); in TricubicSplineInterpolatingFunction()
166 if (xLen != dFdX.length) { in TricubicSplineInterpolatingFunction()
167 throw new DimensionMismatchException(xLen, dFdX.length); in TricubicSplineInterpolatingFunction()
169 if (xLen != dFdY.length) { in TricubicSplineInterpolatingFunction()
170 throw new DimensionMismatchException(xLen, dFdY.length); in TricubicSplineInterpolatingFunction()
172 if (xLen != dFdZ.length) { in TricubicSplineInterpolatingFunction()
173 throw new DimensionMismatchException(xLen, dFdZ.length); in TricubicSplineInterpolatingFunction()
[all …]
DBicubicSplineInterpolatingFunction.java99 final int xLen = x.length; in BicubicSplineInterpolatingFunction() local
102 if (xLen == 0 || yLen == 0 || f.length == 0 || f[0].length == 0) { in BicubicSplineInterpolatingFunction()
105 if (xLen != f.length) { in BicubicSplineInterpolatingFunction()
106 throw new DimensionMismatchException(xLen, f.length); in BicubicSplineInterpolatingFunction()
108 if (xLen != dFdX.length) { in BicubicSplineInterpolatingFunction()
109 throw new DimensionMismatchException(xLen, dFdX.length); in BicubicSplineInterpolatingFunction()
111 if (xLen != dFdY.length) { in BicubicSplineInterpolatingFunction()
112 throw new DimensionMismatchException(xLen, dFdY.length); in BicubicSplineInterpolatingFunction()
114 if (xLen != d2FdXdY.length) { in BicubicSplineInterpolatingFunction()
115 throw new DimensionMismatchException(xLen, d2FdXdY.length); in BicubicSplineInterpolatingFunction()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
DLongArray.java1724 private static void squareInPlace(long[] x, int xLen, int m, int[] ks) in squareInPlace() argument
1726 int pos = xLen << 1; in squareInPlace()
1727 while (--xLen >= 0) in squareInPlace()
1729 long xVal = x[xLen]; in squareInPlace()
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/PBQP/
DHeuristicSolver.h311 unsigned xLen = xCosts.getLength(), in applyR2() local
320 for (unsigned k = 1; k < xLen; ++k) { in applyR2()