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

  /external/opencv/ml/src/
mlboost.cpp 342 double** dbl_ptr = (double**)cvStackAlloc( mi*sizeof(dbl_ptr[0]) ); local
367 dbl_ptr[j] = cjk + j*2 + 1;
377 icvSortDblPtr( dbl_ptr, mi, 0 );
381 idx = (int)(dbl_ptr[subset_i] - cjk)/2;
431 idx = (int)(dbl_ptr[i] - cjk) >> 1;
    [all...]
  /external/opencv3/modules/ml/src/
tree.cpp 832 double** dbl_ptr = 0;
867 dbl_ptr = (double**)(c_weights + _mi);
869 dbl_ptr[j] = cjk + j*2 + 1;
870 std::sort(dbl_ptr, dbl_ptr + mi, cmp_lt_ptr<double>());
899 idx = (int)(dbl_ptr[subset_i] - cjk)/2;
969 idx = (int)(dbl_ptr[i] - cjk) >> 1;
    [all...]
  /external/opencv3/apps/traincascade/
old_ml_boost.cpp 383 double** dbl_ptr = (double**)(cjk + 2*mi); local
408 dbl_ptr[j] = cjk + j*2 + 1;
418 std::sort(dbl_ptr, dbl_ptr + mi, LessThanPtr<double>());
422 idx = (int)(dbl_ptr[subset_i] - cjk)/2;
474 idx = (int)(dbl_ptr[i] - cjk) >> 1;
    [all...]

Completed in 84 milliseconds