/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/ |
D | SmoothingBicubicSplineInterpolator.java | 65 final int yLen = yval.length; in interpolate() local 71 final double[][] zX = new double[yLen][xLen]; in interpolate() 73 if (zval[i].length != yLen) { in interpolate() 74 throw new DimensionMismatchException(zval[i].length, yLen); in interpolate() 77 for (int j = 0; j < yLen; j++) { in interpolate() 86 final PolynomialSplineFunction[] ySplineX = new PolynomialSplineFunction[yLen]; in interpolate() 87 for (int j = 0; j < yLen; j++) { in interpolate() 93 final double[][] zY_1 = new double[xLen][yLen]; in interpolate() 94 for (int j = 0; j < yLen; j++) { in interpolate() 110 final double[][] zY_2 = new double[xLen][yLen]; in interpolate() [all …]
|
D | TricubicSplineInterpolator.java | 52 final int yLen = yval.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() 61 if (fval[i].length != yLen) { in interpolate() 62 throw new DimensionMismatchException(fval[i].length, yLen); in interpolate() 65 for (int j = 0; j < yLen; j++) { in interpolate() 89 = new BicubicSplineInterpolatingFunction[yLen]; in interpolate() 90 for (int j = 0; j < yLen; j++) { in interpolate() 102 final double[][][] dFdX = new double[xLen][yLen][zLen]; in interpolate() 103 final double[][][] dFdY = new double[xLen][yLen][zLen]; in interpolate() [all …]
|
D | BicubicSplineInterpolator.java | 52 final int yLen = yval.length; in interpolate() local 58 final double[][] fX = new double[yLen][xLen]; in interpolate() 60 if (fval[i].length != yLen) { in interpolate() 61 throw new DimensionMismatchException(fval[i].length, yLen); in interpolate() 64 for (int j = 0; j < yLen; j++) { in interpolate() 73 final PolynomialSplineFunction[] ySplineX = new PolynomialSplineFunction[yLen]; in interpolate() 74 for (int j = 0; j < yLen; j++) { in interpolate() 86 final double[][] dFdX = new double[xLen][yLen]; in interpolate() 87 for (int j = 0; j < yLen; j++) { in interpolate() 95 final double[][] dFdY = new double[xLen][yLen]; in interpolate() [all …]
|
D | SmoothingPolynomialBicubicSplineInterpolator.java | 86 final int yLen = yval.length; in interpolate() local 89 if (fval[i].length != yLen) { in interpolate() 90 throw new DimensionMismatchException(fval[i].length, yLen); in interpolate() 99 final PolynomialFunction[] yPolyX = new PolynomialFunction[yLen]; in interpolate() 100 for (int j = 0; j < yLen; j++) { in interpolate() 111 final double[][] fval_1 = new double[xLen][yLen]; in interpolate() 112 for (int j = 0; j < yLen; j++) { in interpolate() 124 for (int j = 0; j < yLen; j++) { in interpolate() 133 final double[][] fval_2 = new double[xLen][yLen]; in interpolate() 136 for (int j = 0; j < yLen; j++) { in interpolate()
|
D | TricubicSplineInterpolatingFunction.java | 157 final int yLen = y.length; in TricubicSplineInterpolatingFunction() local 160 if (xLen == 0 || yLen == 0 || z.length == 0 || f.length == 0 || f[0].length == 0) { in TricubicSplineInterpolatingFunction() 197 final int lastJ = yLen - 1; in TricubicSplineInterpolatingFunction() 202 if (f[i].length != yLen) { in TricubicSplineInterpolatingFunction() 203 throw new DimensionMismatchException(f[i].length, yLen); in TricubicSplineInterpolatingFunction() 205 if (dFdX[i].length != yLen) { in TricubicSplineInterpolatingFunction() 206 throw new DimensionMismatchException(dFdX[i].length, yLen); in TricubicSplineInterpolatingFunction() 208 if (dFdY[i].length != yLen) { in TricubicSplineInterpolatingFunction() 209 throw new DimensionMismatchException(dFdY[i].length, yLen); in TricubicSplineInterpolatingFunction() 211 if (dFdZ[i].length != yLen) { in TricubicSplineInterpolatingFunction() [all …]
|
D | BicubicSplineInterpolatingFunction.java | 100 final int yLen = y.length; in BicubicSplineInterpolatingFunction() local 102 if (xLen == 0 || yLen == 0 || f.length == 0 || f[0].length == 0) { in BicubicSplineInterpolatingFunction() 125 final int lastJ = yLen - 1; in BicubicSplineInterpolatingFunction() 129 if (f[i].length != yLen) { in BicubicSplineInterpolatingFunction() 130 throw new DimensionMismatchException(f[i].length, yLen); in BicubicSplineInterpolatingFunction() 132 if (dFdX[i].length != yLen) { in BicubicSplineInterpolatingFunction() 133 throw new DimensionMismatchException(dFdX[i].length, yLen); in BicubicSplineInterpolatingFunction() 135 if (dFdY[i].length != yLen) { in BicubicSplineInterpolatingFunction() 136 throw new DimensionMismatchException(dFdY[i].length, yLen); in BicubicSplineInterpolatingFunction() 138 if (d2FdXdY[i].length != yLen) { in BicubicSplineInterpolatingFunction() [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/gcm/ |
D | GCMUtil.java | 326 public static void xor(byte[] x, byte[] y, int yOff, int yLen) in xor() argument 328 while (--yLen >= 0) in xor() 330 x[yLen] ^= y[yOff + yLen]; in xor()
|
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/PBQP/ |
D | HeuristicSolver.h | 312 yLen = yxeCosts->getRows(), in applyR2() local 315 Matrix delta(yLen, zLen); in applyR2() 317 for (unsigned i = 0; i < yLen; ++i) { in applyR2()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/ |
D | LongArray.java | 1643 private static void flipVector(long[] x, int xOff, long[] y, int yOff, int yLen, int bits) in flipVector() argument 1650 add(x, xOff, y, yOff, yLen); in flipVector() 1654 long carry = addShiftedDown(x, xOff + 1, y, yOff, yLen, 64 - bits); in flipVector()
|