HomeSort by relevance Sort by last modified time
    Searched defs:max_iter (Results 1 - 10 of 10) sorted by null

  /external/eigen/demos/mandelbrot/
mandelbrot.h 25 int id, max_iter; member in class:MandelbrotThread
  /external/mesa3d/src/compiler/nir/
nir_opt_loop_unroll.c 454 unsigned max_iter = shader->options->max_unroll_iterations; local
456 if (li->trip_count > max_iter)
463 li->num_instructions * li->trip_count <= max_iter * 25;
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorReductionCuda.h 161 Index max_iter = numext::mini<Index>(num_coeffs - first_index, NumPerThread*BlockSize); local
162 for (Index i = 0; i < max_iter; i+=BlockSize) {
237 const Index max_iter = numext::mini<Index>((num_coeffs - first_index) / 2, NumPerThread*BlockSize / 2); local
238 for (Index i = 0; i < max_iter; i += BlockSize) {
680 const Index max_iter = num_preserved_coeffs * divup<Index>(num_coeffs_to_reduce, NumPerThread); local
681 for (Index i = thread_id; i < max_iter; i += num_threads) {
  /external/opencv/cv/src/
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...]
  /external/clang/test/SemaCXX/
constant-expression-cxx11.cpp 417 constexpr const char *max_iter(const char *a, const char *b) { function in namespace:StringLiteral
421 return (a+1 >= b) ? a : max_iter(a, max_element(a+1, b));
    [all...]
  /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...]
  /external/e2fsprogs/lib/blkid/
probe.c 1444 const size_t max_iter = 10000; local
    [all...]
  /external/opencv/ml/include/
ml.h 453 int max_iter; member in class:CvSVMSolver
    [all...]
  /external/opencv/cxcore/include/
cxtypes.h 890 int max_iter; member in struct:CvTermCriteria
895 CV_INLINE CvTermCriteria cvTermCriteria( int type, int max_iter, double epsilon )
900 t.max_iter = max_iter;
    [all...]
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 

Completed in 197 milliseconds