/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/ |
H A D | BicubicSplineInterpolator.java | 39 final double[][] fval) 41 if (xval.length == 0 || yval.length == 0 || fval.length == 0) { 44 if (xval.length != fval.length) { 45 throw new DimensionMismatchException(xval.length, fval.length); 60 if (fval[i].length != yLen) { 61 throw new DimensionMismatchException(fval[i].length, yLen); 65 fX[j][i] = fval[i][j]; 82 xSplineY[i] = spInterpolator.interpolate(yval, fval[i]); 111 d2FdXdY[i][j] = (fval[nI][nJ] - fval[n 37 interpolate(final double[] xval, final double[] yval, final double[][] fval) argument [all...] |
H A D | BivariateRealGridInterpolator.java | 36 * @param fval The values of the interpolation points on all the grid knots: 37 * {@code fval[i][j] = f(xval[i], yval[j])}. 42 BivariateRealFunction interpolate(double[] xval, double[] yval, double[][] fval) argument
|
H A D | SmoothingPolynomialBicubicSplineInterpolator.java | 76 final double[][] fval) 78 if (xval.length == 0 || yval.length == 0 || fval.length == 0) { 81 if (xval.length != fval.length) { 82 throw new DimensionMismatchException(xval.length, fval.length); 89 if (fval[i].length != yLen) { 90 throw new DimensionMismatchException(fval[i].length, yLen); 98 // respect to variable x, fitting array fval[][j] 103 xFitter.addObservedPoint(1, xval[i], fval[i][j]); 74 interpolate(final double[] xval, final double[] yval, final double[][] fval) argument
|
H A D | TricubicSplineInterpolator.java | 38 final double[][][] fval) 40 if (xval.length == 0 || yval.length == 0 || zval.length == 0 || fval.length == 0) { 43 if (xval.length != fval.length) { 44 throw new DimensionMismatchException(xval.length, fval.length); 61 if (fval[i].length != yLen) { 62 throw new DimensionMismatchException(fval[i].length, yLen); 66 if (fval[i][j].length != zLen) { 67 throw new DimensionMismatchException(fval[i][j].length, zLen); 71 final double v = fval[i][j][k]; 84 xSplineYZ[i] = bsi.interpolate(yval, zval, fval[ 35 interpolate(final double[] xval, final double[] yval, final double[] zval, final double[][][] fval) argument [all...] |
H A D | TrivariateRealGridInterpolator.java | 39 * @param fval the values of the interpolation points on all the grid knots: 40 * {@code fval[i][j][k] = f(xval[i], yval[j], zval[k])}. 47 TrivariateRealFunction interpolate(double[] xval, double[] yval, double[] zval, double[][][] fval) argument
|
/external/valgrind/none/tests/s390x/ |
H A D | rounding-6.c | 86 static const float fval[] = { local 99 for (j = 0; j < sizeof fval / sizeof fval[0]; ++j) { 101 cfebr(fval[j], M3_BFP_ROUND_NEAREST_EVEN); 103 cfebr(fval[j], M3_BFP_ROUND_ZERO); 104 cfebr(fval[j], M3_BFP_ROUND_POSINF); 105 cfebr(fval[j], M3_BFP_ROUND_NEGINF); 109 for (j = 0; j < sizeof fval / sizeof fval[0]; ++j) { 111 cgebr(fval[ [all...] |
H A D | rounding-3.c | 73 static const float fval[] = { local 87 for (j = 0; j < sizeof fval / sizeof fval[0]; ++j) { 88 cfebr(fval[j]); 93 for (j = 0; j < sizeof fval / sizeof fval[0]; ++j) { 94 cgebr(fval[j]);
|
/external/opencv3/modules/videoio/src/ |
H A D | cap_ximea.cpp | 252 float fval = 0; local 260 case CV_CAP_PROP_FPS : xiGetParamFloat( hmv, XI_PRM_FRAMERATE, &fval); return fval; 261 case CV_CAP_PROP_GAIN : xiGetParamFloat( hmv, XI_PRM_GAIN, &fval); return fval; 279 case CV_CAP_PROP_XI_EXP_PRIORITY : xiGetParamFloat( hmv, XI_PRM_EXP_PRIORITY, &fval); return fval; 281 case CV_CAP_PROP_XI_AG_MAX_LIMIT : xiGetParamFloat( hmv, XI_PRM_AG_MAX_LIMIT, &fval); return fval; 294 float fval local [all...] |
/external/toybox/toys/other/ |
H A D | lsattr.c | 251 unsigned long fval = 0; local 272 if (ext2_getflag(fd, &(root->st), &fval) < 0) { 282 fval &= ~(chattr.rm); 283 fval |= chattr.add; 284 if (!S_ISDIR(root->st.st_mode)) fval &= ~FS_DIRSYNC_FL; 285 if (ext2_setflag(fd, &(root->st), fval) < 0)
|
/external/libvncserver/common/ |
H A D | d3des.c | 336 register unsigned long fval, work, right, leftt; local 362 fval = SP7[ work & 0x3fL]; 363 fval |= SP5[(work >> 8) & 0x3fL]; 364 fval |= SP3[(work >> 16) & 0x3fL]; 365 fval |= SP1[(work >> 24) & 0x3fL]; 367 fval |= SP8[ work & 0x3fL]; 368 fval |= SP6[(work >> 8) & 0x3fL]; 369 fval |= SP4[(work >> 16) & 0x3fL]; 370 fval |= SP2[(work >> 24) & 0x3fL]; 371 leftt ^= fval; [all...] |
/external/v8/test/cctest/compiler/ |
H A D | test-representation-change.cc | 63 float fval = OpParameter<float>(n->op()); local 64 CHECK_FLOAT_EQ(expected, fval);
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
H A D | Packet.java | 376 * @param fval 379 public void setNextValueAsFloat(float fval) { argument 383 long val = Float.floatToIntBits(fval);
|
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
H A D | nv50_ir.cpp | 332 ImmediateValue::ImmediateValue(Program *prog, float fval) argument 340 reg.data.f32 = fval; 459 ImmediateValue::compare(CondCode cc, float fval) const 467 case CC_LT: return reg.data.f32 < fval; 468 case CC_LE: return reg.data.f32 <= fval; 469 case CC_GT: return reg.data.f32 > fval; 470 case CC_GE: return reg.data.f32 >= fval; 471 case CC_EQ: return reg.data.f32 == fval; 472 case CC_NE: return reg.data.f32 != fval;
|
/external/v8/src/wasm/ |
H A D | ast-decoder.cc | 748 Value fval = Pop(); local 750 if (tval.type == kAstStmt || tval.type != fval.type) { 751 if (tval.type != kAstEnd && fval.type != kAstEnd) { 758 DCHECK(fval.type != kAstEnd); 763 TFNode* vals[2] = {tval.node, fval.node};
|
H A D | wasm-interpreter.cc | 1256 WasmVal fval = Pop(); local 1258 Push(pc, cond.to<int32_t>() != 0 ? tval : fval);
|
/external/opencv/cxcore/src/ |
H A D | cxpersistence.cpp | 809 double fval = strtod( ptr, endptr ); local 817 fval = fval2; 823 icvProcessSpecialDouble( fs, ptr, &fval, endptr ); 825 return fval; 1004 double fval; local 1012 fval = icv_strtod( fs, ptr, &endptr ); 1014 CV_CALL( icvProcessSpecialDouble( fs, endptr, &fval, &endptr ));*/ 1017 node->data.f = fval; 1892 double fval; local 1899 fval 3302 double fval = node->data.f; local [all...] |
/external/opencv3/modules/core/src/ |
H A D | arithm.cpp | 4942 double fval = 0; local 4943 getConvertFunc(depth2, CV_64F)(src2.ptr(), 1, 0, 1, (uchar *)&fval, 1, Size(1, 1), 0); 4944 if( fval < getMinVal(depth1) ) 4947 if( fval > getMaxVal(depth1) ) 4950 int ival = cvRound(fval); 4951 if( fval != ival ) 4954 ival = cvCeil(fval); 4956 ival = cvFloor(fval); 5063 double fval=0; local 5064 getConvertFunc(depth2, CV_64F)(src2.ptr(), 1, 0, 1, (uchar*)&fval, [all...] |
H A D | persistence.cpp | 925 double fval = strtod( ptr, endptr ); local 933 fval = fval2; 939 icvProcessSpecialDouble( fs, ptr, &fval, endptr ); 941 return fval; 1104 double fval; local 1112 fval = icv_strtod( fs, ptr, &endptr ); 1114 icvProcessSpecialDouble( fs, endptr, &fval, &endptr ));*/ 1117 node->data.f = fval; 1927 double fval; local 1934 fval 3297 double fval = node->data.f; local [all...] |
/external/libgdx/backends/gdx-backend-moe/libs/ |
H A D | intel-moe-core.jar | META-INF/ META-INF/MANIFEST.MF LICENSE SQLite/ SQLite/Authorizer.class Authorizer.java package ... |