/external/v8/test/mjsunit/ |
D | number-limits.js | 30 var i; var eps; 31 for (i = 0, eps = 1; i < 1100; i++, eps /= 2) { 32 var mulAboveMax = Number.MAX_VALUE * (1 + eps); 33 var addAboveMax = Number.MAX_VALUE + 1/eps; 34 var mulBelowMin = Number.MIN_VALUE * (1 - eps); 35 var addBelowMin = Number.MIN_VALUE - eps;
|
/external/webkit/Tools/android/flex-2.5.4a/ |
D | nfa.c | 370 int eps; local 378 eps = mkstate( SYM_EPSILON ); 380 mkxtion( eps, first ); 381 mkxtion( eps, second ); 383 return eps; 419 int eps; local 423 eps = mkstate( SYM_EPSILON ); 424 mach = link_machines( mach, eps ); 431 eps = mkstate( SYM_EPSILON ); 432 mach = link_machines( eps, mach ); [all …]
|
D | parse.y | 80 int pat, scnum, eps, headcnt, trailcnt, anyccl, lastchar, i, rulelen; variable 461 eps = mkstate( SYM_EPSILON ); 463 link_machines( eps, mkstate( '\n' ) ) );
|
/external/blktrace/btt/doc/ |
D | Makefile | 5 btt.tex: activity.eps qhist.eps dhist.eps seek.eps
|
/external/opencv/cv/src/ |
D | cvmatchcontours.cpp | 65 double eps = 1.e-5; in cvMatchShapes() local 127 if( ama > eps && amb > eps ) in cvMatchShapes() 157 if( ama > eps && amb > eps ) in cvMatchShapes() 187 if( ama > eps && amb > eps ) in cvMatchShapes() 232 double eps = 1.e-5; in cvMatchContourTrees() local 281 if( area1 < eps || area2 < eps || lpt < 4 ) in cvMatchContourTrees()
|
D | cvcornersubpix.cpp | 69 double eps; in cvFindCornerSubPix() local 98 eps = 0.f; in cvFindCornerSubPix() 102 eps = criteria.epsilon; in cvFindCornerSubPix() 106 eps = criteria.epsilon; in cvFindCornerSubPix() 114 eps = MAX( eps, 0 ); in cvFindCornerSubPix() 115 eps *= eps; /* use square of error in comparsion operations. */ in cvFindCornerSubPix() 250 while( ++iter < max_iters && err > eps ); in cvFindCornerSubPix()
|
D | cvapprox.cpp | 520 CvSeq** dst_contour, float eps ) in icvApproxPolyDP_32s() argument 546 eps *= eps; in icvApproxPolyDP_32s() 596 le_eps = max_dist <= eps; in icvApproxPolyDP_32s() 649 le_eps = (double)max_dist * max_dist <= eps * ((double)dx * dx + (double)dy * dy); in icvApproxPolyDP_32s() 694 if( (double)dist * dist <= 0.5*eps*((double)dx*dx + (double)dy*dy) && dx != 0 && dy != 0 ) in icvApproxPolyDP_32s() 724 CvSeq** dst_contour, float eps ) in icvApproxPolyDP_32f() argument 750 eps *= eps; in icvApproxPolyDP_32f() 801 le_eps = max_dist <= eps; in icvApproxPolyDP_32f() 854 le_eps = (double)max_dist * max_dist <= eps * ((double)dx * dx + (double)dy * dy); in icvApproxPolyDP_32f() 899 if( (double)dist * dist <= 0.5*eps*((double)dx*dx + (double)dy*dy) ) in icvApproxPolyDP_32f()
|
D | cvcamshift.cpp | 65 int i = 0, eps; in cvMeanShift() local 93 eps = cvRound( criteria.epsilon * criteria.epsilon ); in cvMeanShift() 130 if( dx*dx + dy*dy < eps ) in cvMeanShift()
|
D | cvshapedescr.cpp | 281 const float eps = FLT_EPSILON*2; in cvMinEnclosingCircle() local 441 radius = (float)(sqrt(radius)*(1 + eps)); in cvMinEnclosingCircle() 569 double eps = 1.e-5; in icvContourSecArea() local 632 if( (fabs( sk ) < eps && lpt > 0) || sk * sk1 < -eps ) in icvContourSecArea() 634 if( fabs( sk ) < eps ) in icvContourSecArea() 659 if( fabs( du ) > eps ) in icvContourSecArea() 664 if( t > eps && t < 1 - eps ) in icvContourSecArea()
|
D | cvemd.cpp | 171 float eps, min_delta; in cvCalcEMD2() local 268 eps = CV_EMD_EPS * state.max_cost; in cvCalcEMD2() 294 if( min_delta >= -eps ) in cvCalcEMD2() 917 float eps = CV_EMD_EPS * state->max_cost; in icvRussel() local 1026 if( fabs( diff ) < eps ) in icvRussel() 1056 if( fabs( diff ) < eps ) in icvRussel()
|
D | cvlkpyramid.cpp | 704 float eps = (float)MIN(winSize.width, winSize.height); in cvCalcAffineFlowPyrLK() local 833 if( u.x < -eps || u.x >= levelSize.width+eps || in cvCalcAffineFlowPyrLK() 834 u.y < -eps || u.y >= levelSize.height+eps || in cvCalcAffineFlowPyrLK() 942 if( Av[2] < -eps || Av[2] >= levelSize.width+eps || in cvCalcAffineFlowPyrLK() 943 Av[5] < -eps || Av[5] >= levelSize.height+eps || in cvCalcAffineFlowPyrLK()
|
D | cvcontourtree.cpp | 88 double eps = 1.e-7; in icvCreateContourTree() local 233 (s_c < eps && j > 0 && prev_null == 0) ) in icvCreateContourTree() 600 double eps = 1.e-5; in icvCalcTriAttr() local 608 if( l_base > eps ) in icvCalcTriAttr()
|
/external/valgrind/main/drd/tests/ |
D | omp_matinv.c | 269 elem_t eps; in epsilon() local 270 for (eps = 1; 1 + eps != 1; eps /= 2) in epsilon() 272 return 2 * eps; in epsilon() 293 elem_t eps; in main() local 324 eps = epsilon(); in main() 331 ratio = error / (eps * matrix_size); in main() 335 error, eps, ratio); in main()
|
D | matinv.c | 307 elem_t eps; in epsilon() local 308 for (eps = 1; 1 + eps != 1; eps /= 2) in epsilon() 310 return 2 * eps; in epsilon() 319 elem_t eps; in main() local 345 eps = epsilon(); in main() 352 ratio = error / (eps * matrix_size); in main() 356 error, eps, ratio); in main()
|
/external/opencv/cxcore/src/ |
D | cxjacobieigens.cpp | 69 icvJacobiEigens_32f(float *A, float *V, float *E, int n, float eps) in icvJacobiEigens_32f() argument 79 if( eps < DBL_EPSILON ) in icvJacobiEigens_32f() 80 eps = DBL_EPSILON; in icvJacobiEigens_32f() 97 ax = anorm * eps / n; in icvJacobiEigens_32f() 220 icvJacobiEigens_64d(double *A, double *V, double *E, int n, double eps) in icvJacobiEigens_64d() argument 230 if( eps < DBL_EPSILON ) in icvJacobiEigens_64d() 231 eps = DBL_EPSILON; in icvJacobiEigens_64d() 248 ax = anorm * eps / n; in icvJacobiEigens_64d() 370 cvEigenVV( CvArr* srcarr, CvArr* evectsarr, CvArr* evalsarr, double eps ) in cvEigenVV() argument 411 evals->data.fl, src->cols, (float)eps )); in cvEigenVV() [all …]
|
/external/chromium/net/tools/flip_server/ |
D | epoll_server.h | 72 virtual void OnRegistration(EpollServer* eps, int fd, int event_mask) = 0; 110 virtual void OnShutdown(EpollServer* eps, int fd) = 0; 1002 EpollServer* eps) = 0; 1014 virtual void OnShutdown(EpollServer* eps) = 0; 1040 EpollServer* eps); 1046 virtual void OnShutdown(EpollServer* eps); 1053 const EpollServer* eps() const { return eps_; } in eps() function
|
D | output_ordering.h | 59 EpollServer* eps); 61 virtual void OnShutdown(EpollServer* eps);
|
D | acceptor_thread.h | 52 virtual void OnRegistration(EpollServer* eps, int fd, int event_mask) {} in OnRegistration() argument 56 virtual void OnShutdown(EpollServer* eps, int fd) {} in OnShutdown() argument
|
D | output_ordering.cc | 68 EpollServer* eps) { in OnRegistration() argument 69 epoll_server_ = eps; in OnRegistration() 78 void OutputOrdering::BeginOutputtingAlarm::OnShutdown(EpollServer* eps) { in OnShutdown() argument
|
D | sm_connection.h | 85 virtual void OnRegistration(EpollServer* eps, int fd, int event_mask); 89 virtual void OnShutdown(EpollServer* eps, int fd);
|
D | epoll_server.cc | 72 void OnShutdown(EpollServer *eps, int fd) {} in OnShutdown() argument 806 EpollServer* eps) { in OnRegistration() argument 810 eps_ = eps; in OnRegistration() 818 void EpollAlarm::OnShutdown(EpollServer* eps) { in OnShutdown() argument
|
/external/chromium/base/third_party/dmg_fp/ |
D | mac_wextra.patch | 37 if (dval(&u) > 0.5 + dval(&eps)) 39 else if (dval(&u) < 0.5 - dval(&eps)) {
|
/external/webkit/Source/JavaScriptCore/wtf/ |
D | dtoa.cpp | 1329 U d2, eps, u; in dtoa() local 1485 dval(&eps) = (ieps * dval(&u)) + 7.; in dtoa() 1486 word0(&eps) -= (P - 1) * Exp_msk1; in dtoa() 1491 if (dval(&u) > dval(&eps)) in dtoa() 1493 if (dval(&u) < -dval(&eps)) in dtoa() 1501 dval(&eps) = (0.5 / tens[ilim - 1]) - dval(&eps); in dtoa() 1506 if (dval(&u) < dval(&eps)) in dtoa() 1508 if (1. - dval(&u) < dval(&eps)) in dtoa() 1512 dval(&eps) *= 10.; in dtoa() 1517 dval(&eps) *= tens[ilim - 1]; in dtoa() [all …]
|
/external/srec/config/en.us/models/ |
D | phones.map | 1 eps 0
|
/external/wpa_supplicant/ |
D | Makefile | 896 %.eps: %.fig 897 fig2dev -L eps $*.fig $*.eps 903 docs-pics: doc/wpa_supplicant.png doc/wpa_supplicant.eps 915 rm -f doc/wpa_supplicant.{eps,png} wpa_supplicant-devel.pdf
|