/external/skia/src/pathops/ |
D | SkLineParameters.h | 57 fA = DBL_EPSILON; // push it from 0 to slightly negative (y() returns -a) in cubicEndPoints() 66 fA = DBL_EPSILON; // push it from 0 to slightly negative (y() returns -a) in cubicEndPoints() 105 fA = DBL_EPSILON; in quadEndPoints()
|
D | SkPathOpsTypes.h | 90 const double DBL_EPSILON_ERR = DBL_EPSILON * 4; // FIXME: tune -- allow a few bits of error 91 const double DBL_EPSILON_SUBDIVIDE_ERR = DBL_EPSILON * 16;
|
/external/chromium_org/third_party/skia/src/pathops/ |
D | SkLineParameters.h | 57 fA = DBL_EPSILON; // push it from 0 to slightly negative (y() returns -a) in cubicEndPoints() 66 fA = DBL_EPSILON; // push it from 0 to slightly negative (y() returns -a) in cubicEndPoints() 105 fA = DBL_EPSILON; in quadEndPoints()
|
D | SkPathOpsTypes.h | 90 const double DBL_EPSILON_ERR = DBL_EPSILON * 4; // FIXME: tune -- allow a few bits of error 91 const double DBL_EPSILON_SUBDIVIDE_ERR = DBL_EPSILON * 16;
|
/external/libcxx/test/language.support/support.limits/c.limits/ |
D | cfloat.pass.cpp | 118 #ifndef DBL_EPSILON 119 #error DBL_EPSILON not defined
|
/external/libcxx/test/depr/depr.c.headers/ |
D | float_h.pass.cpp | 118 #ifndef DBL_EPSILON 119 #error DBL_EPSILON not defined
|
/external/clang/lib/Headers/ |
D | float.h | 62 # undef DBL_EPSILON 111 #define DBL_EPSILON __DBL_EPSILON__ macro
|
/external/libcxx/test/language.support/support.limits/limits/numeric.limits.members/ |
D | epsilon.pass.cpp | 52 test<double>(DBL_EPSILON); in main()
|
/external/opencv/cxcore/src/ |
D | cxjacobieigens.cpp | 79 if( eps < DBL_EPSILON ) in icvJacobiEigens_32f() 80 eps = DBL_EPSILON; in icvJacobiEigens_32f() 230 if( eps < DBL_EPSILON ) in icvJacobiEigens_64d() 231 eps = DBL_EPSILON; in icvJacobiEigens_64d()
|
D | cxnorm.cpp | 1061 norm = norm_diff/(norm + DBL_EPSILON); in cvNorm() 1097 norm = norm_diff/(norm + DBL_EPSILON); in cvNorm() 1241 norm = norm_diff/(norm + DBL_EPSILON); in cvNorm() 1299 norm = norm_diff/(norm + DBL_EPSILON); in cvNorm() 1323 norm = norm_diff/(norm + DBL_EPSILON); in cvNorm() 1375 norm = norm_diff/(norm + DBL_EPSILON); in cvNorm() 1405 norm = norm_diff/(norm + DBL_EPSILON); in cvNorm()
|
D | cxutils.cpp | 704 scale = (dmax - dmin)*(smax - smin > DBL_EPSILON ? 1./(smax - smin) : 0); in cvNormalize() 745 norm = norm > DBL_EPSILON ? 1./norm : 0.; in cvNormalize() 778 norm = norm > DBL_EPSILON ? 1./norm : 0.; in cvNormalize() 786 scale = scale > DBL_EPSILON ? 1./scale : 0.; in cvNormalize() 942 if( fabs(val - ival) < DBL_EPSILON && in cvRange() 943 fabs(delta - idelta) < DBL_EPSILON ) in cvRange()
|
/external/chromium_org/third_party/cython/src/Cython/Includes/libc/ |
D | float.pxd | 38 enum: DBL_EPSILON
|
/external/libcxx/include/ |
D | cfloat | 54 DBL_EPSILON
|
/external/libcxx/include/support/win32/ |
D | limits_win32.h | 46 #define __DBL_EPSILON__ DBL_EPSILON
|
/external/libcxx/include/support/ibm/ |
D | limits.h | 74 #define __DBL_EPSILON__ DBL_EPSILON
|
/external/chromium_org/ui/gfx/test/ |
D | ui_cocoa_test_helper.h | 122 #define CGFLOAT_EPSILON DBL_EPSILON
|
/external/opencv/cv/src/ |
D | cvcamshift.cpp | 104 if( fabs(moments.m00) < DBL_EPSILON ) in cvMeanShift() 221 if( fabs(m00) < DBL_EPSILON ) in cvCamShift()
|
D | cvgeometry.cpp | 384 z = 1./sqrt(c * c + s * s + DBL_EPSILON); in cvRQDecomp3x3() 403 z = 1./sqrt(c * c + s * s + DBL_EPSILON); in cvRQDecomp3x3() 423 z = 1./sqrt(c * c + s * s + DBL_EPSILON); in cvRQDecomp3x3()
|
D | cvtemplmatch.cpp | 444 if( templ_norm < DBL_EPSILON && method == CV_TM_CCOEFF_NORMED ) in cvMatchTemplate() 516 if( t > DBL_EPSILON ) in cvMatchTemplate() 523 num = method != CV_TM_SQDIFF_NORMED || num < DBL_EPSILON ? 0 : 1; in cvMatchTemplate()
|
D | cvpgh.cpp | 156 double dist_scale = DBL_EPSILON; in icvCalcPGH()
|
D | cvshapedescr.cpp | 856 a = a < DBL_EPSILON ? 0 : 1./sqrt(sqrt(a)); in icvFitEllipse_F() 908 idet = idet > DBL_EPSILON ? 1./idet : 0; in icvFitEllipse_F() 913 if( scale < DBL_EPSILON ) in icvFitEllipse_F() 939 if( fabs(f) < DBL_EPSILON ) in icvFitEllipse_F()
|
D | cvfundam.cpp | 526 CvLevMarq solver(8, 0, cvTermCriteria(CV_TERMCRIT_ITER+CV_TERMCRIT_EPS, maxIters, DBL_EPSILON)); in refine() 774 if( fabs(s) > DBL_EPSILON ) in run7Point() 863 if( fabs(w[i]) < DBL_EPSILON ) in run8Point() 997 if( param2 < DBL_EPSILON || param2 > 1 - DBL_EPSILON ) in cvFindFundamentalMat()
|
/external/opencv/cv/include/ |
D | cv.hpp | 374 cvTermCriteria(CV_TERMCRIT_EPS+CV_TERMCRIT_ITER,30,DBL_EPSILON), 378 cvTermCriteria(CV_TERMCRIT_EPS+CV_TERMCRIT_ITER,30,DBL_EPSILON),
|
/external/opencv/ml/src/ |
D | mlnbayes.cpp | 179 _var_idx && var_idx && cvNorm(_var_idx,var_idx,CV_C) < DBL_EPSILON) ) in train() 184 cvNorm(cls_labels, __cls_labels, CV_C) > DBL_EPSILON ) in train()
|
/external/libpng/contrib/libtests/ |
D | pngvalid.c | 5304 this->rede = this->redf * DBL_EPSILON; in image_pixel_setf() 5308 this->greene = this->greenf * DBL_EPSILON; in image_pixel_setf() 5312 this->bluee = this->bluef * DBL_EPSILON; in image_pixel_setf() 5316 this->alphae = this->alphaf * DBL_EPSILON; in image_pixel_setf() 6879 (fabs(o.red.Y - data.red_coefficient) > DBL_EPSILON || in image_transform_png_set_rgb_to_gray_set() 6880 fabs(o.green.Y - data.green_coefficient) > DBL_EPSILON || in image_transform_png_set_rgb_to_gray_set() 6881 fabs(o.blue.Y - data.blue_coefficient) > DBL_EPSILON)) in image_transform_png_set_rgb_to_gray_set() 7128 be * data.blue_coefficient + 1./32768 + gray * 5 * DBL_EPSILON; in image_transform_png_set_rgb_to_gray_mod() 7154 r = pow(r, g1)*(1-DBL_EPSILON); rhi = pow(rhi, g1)*(1+DBL_EPSILON); in image_transform_png_set_rgb_to_gray_mod() 7155 g = pow(g, g1)*(1-DBL_EPSILON); ghi = pow(ghi, g1)*(1+DBL_EPSILON); in image_transform_png_set_rgb_to_gray_mod() [all …]
|