HomeSort by relevance Sort by last modified time
    Searched refs:eps (Results 1 - 25 of 64) sorted by null

1 2 3

  /external/blktrace/btt/doc/
Makefile 5 btt.tex: activity.eps qhist.eps dhist.eps seek.eps
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
chkder.h 21 const Scalar eps = sqrt(NumTraits<Scalar>::epsilon()); local
23 const Scalar epslog = chkder_log10e * log(eps);
32 temp = eps * abs(x[j]);
34 temp = eps;
50 temp = eps * abs((fvecp[i] - fvec[i]) / eps - err[i]) / (abs(fvec[i]) + abs(fvecp[i]));
52 if (temp > NumTraits<Scalar>::epsilon() && temp < eps)
54 if (temp >= eps)
fdjac1.h 19 Scalar eps, temp; local
31 eps = sqrt((std::max)(epsfcn,epsmch));
37 h = eps * abs(temp);
39 h = eps;
53 h = eps * abs(wa2[j]);
54 if (h == 0.) h = eps;
62 h = eps * abs(wa2[j]);
63 if (h == 0.) h = eps;
  /external/webkit/Tools/android/flex-2.5.4a/
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 )
457 int eps, orend; local
517 int eps; local
    [all...]
  /external/v8/test/mjsunit/
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/opencv/cv/src/
cvcornersubpix.cpp 69 double eps; local
98 eps = 0.f;
102 eps = criteria.epsilon;
106 eps = criteria.epsilon;
114 eps = MAX( eps, 0 );
115 eps *= eps; /* use square of error in comparsion operations. */
250 while( ++iter < max_iters && err > eps );
cvmatchcontours.cpp 65 double eps = 1.e-5; local
127 if( ama > eps && amb > eps )
157 if( ama > eps && amb > eps )
187 if( ama > eps && amb > eps )
232 double eps = 1.e-5; local
281 if( area1 < eps || area2 < eps || lpt < 4
    [all...]
cvapprox.cpp 520 CvSeq** dst_contour, float eps )
546 eps *= eps;
596 le_eps = max_dist <= eps;
649 le_eps = (double)max_dist * max_dist <= eps * ((double)dx * dx + (double)dy * dy);
694 if( (double)dist * dist <= 0.5*eps*((double)dx*dx + (double)dy*dy) && dx != 0 && dy != 0 )
724 CvSeq** dst_contour, float eps )
750 eps *= eps;
801 le_eps = max_dist <= eps;
    [all...]
cvcamshift.cpp 65 int i = 0, eps; local
93 eps = cvRound( criteria.epsilon * criteria.epsilon );
130 if( dx*dx + dy*dy < eps )
  /external/chromium/net/tools/flip_server/
acceptor_thread.h 52 virtual void OnRegistration(EpollServer* eps, int fd, int event_mask) {}
56 virtual void OnShutdown(EpollServer* eps, int fd) {}
output_ordering.h 59 EpollServer* eps);
61 virtual void OnShutdown(EpollServer* eps);
sm_connection.h 85 virtual void OnRegistration(EpollServer* eps, int fd, int event_mask);
89 virtual void OnShutdown(EpollServer* eps, int fd);
epoll_server.h 67 // eps - the poll server into which this callback was registered
72 virtual void OnRegistration(EpollServer* eps, int fd, int event_mask) = 0;
110 virtual void OnShutdown(EpollServer* eps, int fd) = 0;
1053 const EpollServer* eps() const { return eps_; } function in class:net::EpollAlarm
    [all...]
output_ordering.cc 68 EpollServer* eps) {
69 epoll_server_ = eps;
78 void OutputOrdering::BeginOutputtingAlarm::OnShutdown(EpollServer* eps) {
  /external/valgrind/main/drd/tests/
matinv.c 305 elem_t eps; local
306 for (eps = 1; 1 + eps != 1; eps /= 2)
308 return 2 * eps;
317 elem_t eps; local
344 eps = epsilon();
351 ratio = error / (eps * matrix_size);
355 error, eps, ratio);
omp_matinv.c 269 elem_t eps; local
270 for (eps = 1; 1 + eps != 1; eps /= 2)
272 return 2 * eps;
293 elem_t eps; local
324 eps = epsilon();
331 ratio = error / (eps * matrix_size);
335 error, eps, ratio);
  /external/eigen/unsupported/Eigen/src/NumericalDiff/
NumericalDiff.h 70 const Scalar eps = internal::sqrt(((std::max)(epsfcn,NumTraits<Scalar>::epsilon() ))); local
92 h = eps * internal::abs(x[j]);
94 h = eps;
  /external/bison/doc/
Makefile.am 108 $(FIGS_DOT:.dot=.eps) $(FIGS_DOT:.dot=.pdf) $(FIGS_DOT:.dot=.png)
109 SUFFIXES += .dot .eps .pdf .png
111 bison.dvi: $(FIGS_DOT:.dot=.eps)
115 .dot.eps:
  /external/eigen/test/eigen2/
eigen2_sparse_vector.cpp 20 Scalar eps = 1e-6; local
41 VERIFY_IS_MUCH_SMALLER_THAN( v1.coeff(zerocoords[i]), eps );
  /external/opencv/cxcore/src/
cxjacobieigens.cpp 54 // eps - accuracy of diagonalization.
62 // 3. Calculation time depends on eps value. If the time isn't very important,
63 // we recommend to set eps = 0.
69 icvJacobiEigens_32f(float *A, float *V, float *E, int n, float eps)
79 if( eps < DBL_EPSILON )
80 eps = DBL_EPSILON;
97 ax = anorm * eps / n;
220 icvJacobiEigens_64d(double *A, double *V, double *E, int n, double eps)
230 if( eps < DBL_EPSILON )
231 eps = DBL_EPSILON
    [all...]
  /external/eigen/Eigen/src/Core/
StableNorm.h 84 RealScalar abig, eps; local
111 eps = RealScalar(pow(double(ibeta), 1-it));
112 relerr = internal::sqrt(eps); // tolerance for neglecting asml
113 abig = RealScalar(1.0/eps - 1.0);
  /external/eigen/bench/
benchBlasGemm.cpp 183 MyMatrix::Scalar eps = 1e-4; local
188 MYVERIFY(meigen.isApprox(mref, eps),". * .");
193 MYVERIFY(meigen.isApprox(mref, eps),"T * .");
198 MYVERIFY(meigen.isApprox(mref, eps),"T * T");
203 MYVERIFY(meigen.isApprox(mref, eps),". * T");
bench_norm.cpp 102 Scalar abig, eps;
128 eps = std::pow(ibeta, 1-it);
129 relerr = internal::sqrt(eps); // tolerance for neglecting asml
130 abig = 1.0/eps - 1.0;
  /external/eigen/test/
sparse_vector.cpp 20 Scalar eps = 1e-6; local
41 VERIFY_IS_MUCH_SMALLER_THAN( v1.coeff(zerocoords[i]), eps );
  /external/eigen/unsupported/test/
sparse_extra.cpp 62 Scalar eps = 1e-6; local
78 VERIFY_IS_MUCH_SMALLER_THAN( m.coeff(zeroCoords[i].x(),zeroCoords[i].y()), eps );

Completed in 1275 milliseconds

1 2 3