HomeSort by relevance Sort by last modified time
    Searched full:maxiter (Results 1 - 14 of 14) sorted by null

  /external/opencv/cvaux/src/
cvlevmar.cpp 60 int maxIter,double epsilon)
120 if( maxIter <= 0 )
223 } while ( currIter < maxIter );
226 } while ( change > epsilon && currIter < maxIter );
cvlevmarprojbandle.cpp 1039 CvMat** resultProjMatrs, CvMat* resultPoints4D,int maxIter,double epsilon )
    [all...]
cvlevmartrif.cpp 58 int maxIter,double epsilon);
cvtrifocal.cpp 60 CvMat** resultProjMatrs, CvMat* resultPoints4D,int maxIter,double epsilon );
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
repr.py 41 def _repr_iterable(self, x, level, left, right, maxiter, trail=''):
48 pieces = [repr1(elem, newlevel) for elem in islice(x, maxiter)]
49 if n > maxiter: pieces.append('...')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
repr.py 41 def _repr_iterable(self, x, level, left, right, maxiter, trail=''):
48 pieces = [repr1(elem, newlevel) for elem in islice(x, maxiter)]
49 if n > maxiter: pieces.append('...')
  /external/iptables/iptables/
xtoptions.c 289 unsigned int maxiter; local
294 maxiter = entry->size / esize;
295 if (maxiter == 0)
296 maxiter = ARRAY_SIZE(cb->val.u32_range);
303 if (cb->nvals == maxiter)
306 cb->ext_name, entry->name, maxiter);
620 unsigned int maxiter; local
627 maxiter = entry->size / esize;
628 if (maxiter == 0)
629 maxiter = 2; /* ARRAY_SIZE(cb->val.port_range) *
    [all...]
  /external/chromium_org/third_party/opus/src/silk/fixed/
encode_frame_FIX.c 86 opus_int i, iter, maxIter, found_upper, found_lower, ret = 0;
154 maxIter = 6;
213 if( iter == maxIter ) {
  /external/chromium_org/third_party/opus/src/silk/float/
encode_frame_FLP.c 86 opus_int i, iter, maxIter, found_upper, found_lower, ret = 0;
160 maxIter = 6;
211 if( iter == maxIter ) {
  /external/llvm/include/llvm/Transforms/
Vectorize.h 91 unsigned MaxIter;
  /external/opencv/cxcore/src/
cxutils.cpp 448 * reciprocals in maxiter iterations, the convergence requirement will be
466 static void icvFindPolynomialRoots(const double *a, double *u, int n, int maxiter, int fig)
541 for (i = maxiter; i > 0; i--) {
642 void cvSolvePoly(const CvMat* a, CvMat *r, int maxiter, int fig)
677 icvFindPolynomialRoots( ad, rd, n, maxiter, fig);
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
BBVectorize.cpp 79 MaxIter("bb-vectorize-max-iter", cl::init(0), cl::Hidden,
406 (!Config.MaxIter || n <= Config.MaxIter);
419 for (; !Config.MaxIter || n <= Config.MaxIter; ++n) {
    [all...]
  /external/opencv/cv/src/
_cvipp.h     [all...]
  /external/opencv/cxcore/include/
cxcore.h 693 int maxiter CV_DEFAULT(0), int fig CV_DEFAULT(0));
    [all...]

Completed in 709 milliseconds