/external/skia/tests/ |
PathOpsAngleIdeas.cpp | 288 double rStep = r / 2; 331 r += stepUp ? rStep : -rStep; 332 rStep /= 2; 333 } while (rStep > FLT_EPSILON); 340 rStep = r / 2; 378 r += success ? -rStep : rStep; 379 rStep /= 2; 380 } while (rStep > FLT_EPSILON) [all...] |
/external/opencv3/samples/cpp/ |
autofocus.cpp | 100 int lStep, rStep; 102 rStep = startWith; 105 while (lStep < rStep) 107 int mStep = (lStep + rStep) / 2; 111 rStep = mStep;
|
/external/opencv/ml/src/ |
mlnbayes.cpp | 294 int rtype = 0, rstep = 0, size; local 318 rstep = CV_IS_MAT_CONT(results->type) ? 1 : results->step/CV_ELEM_SIZE(rtype); 371 results->data.i[k*rstep] = ival; 373 results->data.fl[k*rstep] = (float)ival;
|
mlknearest.cpp | 220 int rstep = _results && !CV_IS_MAT_CONT(_results->type) ? _results->step/sizeof(result) : 1; local 277 _results->data.fl[(start + i)*rstep] = r;
|
/external/opencv3/modules/ml/src/ |
nbayes.cpp | 225 size_t rstep = 0, rpstep = 0; local 234 rstep = results->isContinuous() ? 1 : results->step/results->elemSize(); 292 results->ptr<int>()[k*rstep] = ival; 294 results->ptr<float>()[k*rstep] = (float)ival;
|
/external/opencv3/3rdparty/libtiff/ |
tif_color.c | 101 i = (int)((Yr - cielab->display.d_Y0R) / cielab->rstep); 137 cielab->rstep =
|
tiffio.h | 168 float rstep, gstep, bstep; member in struct:__anon20404
|
/external/pdfium/third_party/libtiff/ |
tif_color.c | 101 i = (int)((Yr - cielab->display.d_Y0R) / cielab->rstep); 137 cielab->rstep =
|
tiffio.h | 168 float rstep, gstep, bstep; member in struct:__anon21682
|
/external/opencv3/modules/imgproc/src/ |
lsd.cpp | 1065 double lstep = flstep, rstep = frstep; local [all...] |
/external/opencv/cv/src/ |
cvtemplmatch.cpp | 319 void* result, int rstep );
|
/external/opencv3/apps/traincascade/ |
boost.cpp | 719 int rStep = CV_IS_MAT_CONT( responses->type ) ? 1 : responses->step / CV_ELEM_SIZE( responses->type ); 726 labelsBuf[si] = (int)responses->data.fl[sidx*rStep]; [all...] |