HomeSort by relevance Sort by last modified time
    Searched defs:epsilon (Results 1 - 25 of 27) sorted by null

1 2

  /dalvik/tests/053-wait-some/src/
Main.java 46 long epsilon = delay / 10; local
47 if (epsilon > 50) {
48 epsilon = 50;
51 long min = delay - epsilon;
52 long max = delay + epsilon;
  /external/eigen/Eigen/src/Geometry/
EulerAngles.h 40 const Scalar epsilon = NumTraits<Scalar>::dummy_precision(); local
51 if (s > epsilon)
66 if (c > epsilon)
  /external/eigen/test/eigen2/
eigen2_prec_inverse_4x4.cpp 24 template<typename T> inline typename NumTraits<T>::Real epsilon() function
26 return std::numeric_limits<typename NumTraits<T>::Real>::epsilon();
42 double error = double( (m*inv-MatrixType::Identity()).norm() / epsilon<Scalar>() );
60 } while(absdet < 10 * epsilon<Scalar>());
62 double error = double( (m*inv-MatrixType::Identity()).norm() * absdet / epsilon<Scalar>() );
  /external/libvorbis/lib/
lpc.c 65 double epsilon; local
80 epsilon=1e-9*aut[0]+1e-10;
85 if(error<epsilon){
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
SoftLandingInterpolator.java 42 final float epsilon = Math.min(mI / 2f, (1f - mI) / 2f); local
43 bottom = mI - epsilon;
44 top = mI + epsilon;
  /external/srec/srec/include/
comp_stats.h 84 CS_CLOCK epsilon; member in struct:COMP_STATS_t
  /external/valgrind/main/drd/tests/
omp_matinv.c 262 /** Compute epsilon for the numeric type elem_t. Epsilon is defined as the
267 static elem_t epsilon() function
324 eps = epsilon();
334 printf("error = %g; epsilon = %g; error / (epsilon * n) = %g\n",
matinv.c 298 /** Compute epsilon for the numeric type elem_t. Epsilon is defined as the
303 static elem_t epsilon() function
344 eps = epsilon();
354 printf("error = %g; epsilon = %g; error / (epsilon * n) = %g\n",
  /external/chromium/chrome/browser/ui/views/infobars/
infobar_view.cc 180 const SkScalar epsilon = 0.01f; local
181 fill_path_->rLineTo(-epsilon, 0);
183 fill_path_->rLineTo(epsilon - (arrow_fill_half_width * 2), 0);
  /external/clang/test/CodeGenCXX/
mangle-ms.cpp 131 void epsilon(int a[][10][20]) {} function
132 // CHECK: @"\01?epsilon@@YAXQAY19BE@H@Z"
  /external/stlport/test/unit/
num_put_get_test.cpp 58 float epsilon = numeric_limits<float>::epsilon(); local
59 return val <= ref + epsilon && val >= ref - epsilon;
64 double epsilon = numeric_limits<double>::epsilon(); local
65 return val <= ref + epsilon && val >= ref - epsilon;
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
num_put_get_test.cpp 58 float epsilon = numeric_limits<float>::epsilon(); local
59 return val <= ref + epsilon && val >= ref - epsilon;
64 double epsilon = numeric_limits<double>::epsilon(); local
65 return val <= ref + epsilon && val >= ref - epsilon;
    [all...]
  /ndk/tests/device/test-stlport/unit/
num_put_get_test.cpp 58 float epsilon = numeric_limits<float>::epsilon(); local
59 return val <= ref + epsilon && val >= ref - epsilon;
64 double epsilon = numeric_limits<double>::epsilon(); local
65 return val <= ref + epsilon && val >= ref - epsilon;
    [all...]
  /external/bison/lib/
hash.c 515 float epsilon; local
522 is 11 (due to next_prime's algorithm), so an epsilon of 0.1
524 epsilon = 0.1f;
526 if (epsilon < tuning->growth_threshold
527 && tuning->growth_threshold < 1 - epsilon
528 && 1 + epsilon < tuning->growth_factor
530 && tuning->shrink_threshold + epsilon < tuning->shrink_factor
532 && tuning->shrink_threshold + epsilon < tuning->growth_threshold)
    [all...]
  /external/webkit/Source/WebCore/rendering/
AutoTableLayout.cpp 233 // We substitute 0 percent by (epsilon / percentScaleFactor) percent in two places below to avoid division by zero.
235 const float epsilon = 1 / 128.0f; local
244 float logicalWidth = static_cast<float>(m_layoutStruct[i].effectiveMaxLogicalWidth) * 100 / max(percent, epsilon);
253 maxNonPercent = maxNonPercent * 100 / max(remainingPercent, epsilon);
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
FastMath.java 47 /** A "close to zero" double epsilon value for use*/
49 /** A "close to zero" float epsilon value for use*/
51 /** A "close to zero" float epsilon value for use*/
369 float epsilon = 0.001f; local
384 if (l + epsilon < len) {
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseMatrix.h 469 /** Suppresses all nonzeros which are \b much \b smaller \b than \a reference under the tolerence \a epsilon */
470 void prune(Scalar reference, RealScalar epsilon = NumTraits<RealScalar>::dummy_precision())
472 prune(default_prunning_func(reference,epsilon));
922 default_prunning_func(Scalar ref, RealScalar eps) : reference(ref), epsilon(eps) {
928 RealScalar epsilon; member in struct:Eigen::SparseMatrix::default_prunning_func
    [all...]
  /external/opencv/ml/src/
mlann_mlp.cpp 834 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*count
1065 double prev_E = DBL_MAX*0.5, epsilon; local
    [all...]
mlboost.cpp 246 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 )
    [all...]
mltree.cpp 1568 const float epsilon = FLT_EPSILON*2; local
2050 const float epsilon = FLT_EPSILON*2; local
    [all...]
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Blend.cpp 1151 const double epsilon = 1e-5; local
    [all...]
  /packages/apps/Gallery2/jni_mosaic/feature_mos/src/mosaic/
Blend.cpp 1151 const double epsilon = 1e-5; local
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Blend.cpp 1131 const double epsilon = 1e-5; local
    [all...]
  /external/libxml2/
trio.c 2640 trio_long_double_t epsilon; local
    [all...]
  /external/opencv/cxcore/include/
cxtypes.h 891 double epsilon; member in struct:CvTermCriteria
895 CV_INLINE CvTermCriteria cvTermCriteria( int type, int max_iter, double epsilon )
901 t.epsilon = (float)epsilon;
    [all...]

Completed in 1224 milliseconds

1 2