HomeSort by relevance Sort by last modified time
    Searched full:max_iter (Results 1 - 25 of 28) sorted by null

1 2

  /external/clang/test/CodeGen/
mandel.c 21 #define MAX_ITER 100
39 for (n = 0; n < MAX_ITER; ++n) {
45 if (n == MAX_ITER)
  /external/opencv/ml/src/
mlann_mlp.cpp 820 const int MAX_ITER = 1000;
833 int max_iter; local
846 max_iter = params.term_crit.type & CV_TERMCRIT_ITER ? params.term_crit.max_iter : MAX_ITER;
847 max_iter = MIN( max_iter, MAX_ITER );
848 max_iter = MAX( max_iter, 1 )
888 int i, j, k, ivcount, ovcount, l_count, total = 0, max_iter; local
1063 int i, ivcount, ovcount, l_count, total = 0, max_iter, buf_sz, dcount0, dcount=0; local
    [all...]
mlcnn.cpp 66 int max_iter,
154 if( params->max_iter < 1 ) \
155 params->max_iter = 1; \
195 cnn_model->etalons, params->grad_estim_type, params->max_iter,
216 int max_iter,
251 for( n = 1; n <= max_iter; n++ )
433 cnn_model->etalons, params->grad_estim_type, params->max_iter,
    [all...]
mlrtrees.cpp 306 const int max_ntrees = term_crit.max_iter;
mlem.cpp 655 if( ++iter > termcrit.max_iter )
908 for( n = 0; n < params.term_crit.max_iter; n++ )
    [all...]
mlsvm.cpp 424 max_iter = kernel->params->term_crit.max_iter;
640 if( (this->*select_working_set_func)( i, j ) != 0 || iter++ >= max_iter )
    [all...]
  /external/srec/srec/clib/
jacobi.c 34 #define MAX_ITER 100
96 if (iter >= MAX_ITER)
99 MAX_ITER);
  /external/opencv/cv/src/
cvcornersubpix.cpp 99 max_iters = criteria.max_iter;
107 max_iters = criteria.max_iter;
cvsegmentation.cpp 370 termcrit.max_iter = 5;
371 termcrit.max_iter = MAX(termcrit.max_iter,1);
372 termcrit.max_iter = MIN(termcrit.max_iter,100);
454 for( iter = 0; iter < termcrit.max_iter; iter++ )
cvposit.cpp 143 if( (criteria.type & CV_TERMCRIT_ITER) && criteria.max_iter <= 0 )
234 converged |= ((criteria.type & CV_TERMCRIT_ITER) && (count == criteria.max_iter));
cvpyrsegmentation.cpp 189 const int max_iter = 3; /* maximum number of iterations */ local
319 for( cur_iter = 0; cur_iter < max_iter; cur_iter++ )
321 int is_last_iter = cur_iter == max_iter - 1;
603 const int max_iter = 3; /* maximum number of iterations */ local
739 for( cur_iter = 0; cur_iter < max_iter; cur_iter++ )
741 int is_last_iter = cur_iter == max_iter - 1;
    [all...]
cvcamshift.cpp 95 for( i = 0; i < criteria.max_iter; i++ )
cvlkpyramid.cpp 113 criteria->max_iter = max_iters;
406 winSize.width*2 + 1, level, criteria.max_iter,
503 for( j = 0; j < criteria.max_iter; j++ )
937 for( j = 0; j < criteria.max_iter; j++ )
    [all...]
cvcalibration.cpp 109 criteria.max_iter = MIN(MAX(criteria.max_iter,1),1000);
111 criteria.max_iter = 30;
172 if( ++iters >= criteria.max_iter ||
238 if( ++iters >= criteria.max_iter ||
    [all...]
cvoptflowhs.cpp 459 if( (criteria.type & CV_TERMCRIT_ITER) && (iter == criteria.max_iter) )