Searched defs:epsilon (Results 51 - 61 of 61) sorted by relevance

123

/external/opencv/ml/src/
H A Dmlann_mlp.cpp834 double epsilon; local
850 epsilon = params.term_crit.type & CV_TERMCRIT_EPS ? params.term_crit.epsilon : DEFAULT_EPSILON;
851 epsilon = MAX(epsilon, DBL_EPSILON);
855 params.term_crit.epsilon = epsilon;
890 double prev_E = DBL_MAX*0.5, E = 0, epsilon; local
893 epsilon = params.term_crit.epsilon*coun
1065 double prev_E = DBL_MAX*0.5, epsilon; local
[all...]
H A Dmlboost.cpp246 const float epsilon = FLT_EPSILON*2; local
287 if( sorted[i].val + epsilon < sorted[i+1].val )
308 if( sorted[i].val + epsilon < sorted[i+1].val )
442 const float epsilon = FLT_EPSILON*2; local
470 if( sorted[i].val + epsilon < sorted[i+1].val )
573 const float epsilon = FLT_EPSILON*2; local
613 if( LL + RR > best_val && sorted[i].val + epsilon < sorted[i+1].val )
622 if( RL + LR > best_val && sorted[i].val + epsilon < sorted[i+1].val )
H A Dmltree.cpp1568 const float epsilon = FLT_EPSILON*2; local
1609 if( sorted[i].val + epsilon < sorted[i+1].val )
1641 if( sorted[i].val + epsilon < sorted[i+1].val )
1929 const float epsilon = FLT_EPSILON*2;
1950 if( sorted[i].val + epsilon < sorted[i+1].val )
2050 const float epsilon = FLT_EPSILON*2; local
2087 if( LL + RR > _best_val && sorted[i].val + epsilon < sorted[i+1].val )
2096 if( RL + LR > _best_val && sorted[i].val + epsilon < sorted[i+1].val )
2138 if( LL + RR > best_val && sorted[i].val + epsilon < sorted[i+1].val )
2147 if( RL + LR > best_val && sorted[i].val + epsilon < sorte
[all...]
/external/deqp/modules/gles3/performance/
H A Des3pBufferDataUploadTests.cpp1002 const float epsilon = 0.0001f; local
1006 if (approachCoeffient < epsilon)
1021 const float epsilon = 1.e-6f; local
1033 const float errorAreaRatio = (aabbArea < epsilon) ? (1.0f) : (areaBetweenLines / aabbArea);
1058 const float epsilon = 1.e-6f; local
1069 const float errorAreaRatio = (aabbArea < epsilon) ? (1.0f) : (areaBetweenLines / aabbArea);
/external/eigen/unsupported/test/mpreal/
H A Dmpreal.h817 // Estimate machine epsilon for the given precision
821 // Returns smallest eps such that x + eps != x (relative machine epsilon)
1919 /* max = (1 - eps) * 2^emax, eps is machine epsilon */
2874 // Returns smallest eps such that 1 + eps != 1 (classic machine epsilon)
2875 inline static mpfr::mpreal epsilon(mp_prec_t precision = mpfr::mpreal::get_default_prec()) { return mpfr::machine_epsilon(precision); } function in class:std::numeric_limits
2877 // Returns smallest eps such that x + eps != x (relative machine epsilon)
2878 inline static mpfr::mpreal epsilon(const mpfr::mpreal& x) { return mpfr::machine_epsilon(x); } function in class:std::numeric_limits
/external/skia/src/core/
H A DSkPath.cpp2227 // The error epsilon was empirically derived; worse case round rects
2228 // with a mid point outset by 2x float epsilon in tests had an error
2230 const int epsilon = 16; local
2237 return aBits < bBits + epsilon && bBits < aBits + epsilon;
/external/chromium_org/third_party/skia/src/core/
H A DSkPath.cpp2156 // The error epsilon was empirically derived; worse case round rects
2157 // with a mid point outset by 2x float epsilon in tests had an error
2159 const int epsilon = 16; local
2166 return aBits < bBits + epsilon && bBits < aBits + epsilon;
/external/chromium_org/third_party/libxml/src/
H A Dtrio.c2640 trio_long_double_t epsilon; local
2690 epsilon = LDBL_EPSILON;
2697 epsilon = FLT_EPSILON;
2704 epsilon = DBL_EPSILON;
2797 integerDigits = (integerNumber > epsilon)
2826 integerDigits = (integerNumber > epsilon)
2865 hasOnlyZeroes = (floorl((fractionNumber + fractionAdjust) * dblFractionBase) < epsilon);
/external/libxml2/
H A Dtrio.c2644 trio_long_double_t epsilon; local
2694 epsilon = LDBL_EPSILON;
2701 epsilon = FLT_EPSILON;
2708 epsilon = DBL_EPSILON;
2801 integerDigits = (integerNumber > epsilon)
2830 integerDigits = (integerNumber > epsilon)
2869 hasOnlyZeroes = (floorl((fractionNumber + fractionAdjust) * dblFractionBase) < epsilon);
/external/opencv/cxcore/include/
H A Dcxtypes.h891 double epsilon; member in struct:CvTermCriteria
895 CV_INLINE CvTermCriteria cvTermCriteria( int type, int max_iter, double epsilon )
901 t.epsilon = (float)epsilon;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 526 milliseconds

123