Home
last modified time | relevance | path

Searched refs:min_step (Results 1 – 4 of 4) sorted by relevance

/external/libunwind/tests/
DGperf-simple.c115 double step, min_step, first_step, sum_step; in doit() local
119 min_step = 1e99; in doit()
126 if (step < min_step) in doit()
127 min_step = step; in doit()
133 1e9*first_step, 1e9*min_step, 1e9*sum_step/iterations); in doit()
DGperf-trace.c101 double step, min_step, first_step, sum_step; in doit() local
105 min_step = 1e99; in doit()
112 if (step < min_step) in doit()
113 min_step = step; in doit()
119 1e9*first_step, 1e9*min_step, 1e9*sum_step/iterations); in doit()
/external/opencv/cxcore/src/
Dcxarray.cpp132 int min_step; in cvCreateMatHeader() local
138 min_step = CV_ELEM_SIZE(type)*cols; in cvCreateMatHeader()
139 if( min_step <= 0 ) in cvCreateMatHeader()
144 arr->step = rows == 1 ? 0 : cvAlign(min_step, CV_DEFAULT_MAT_ROW_ALIGN); in cvCreateMatHeader()
146 (arr->step == 0 || arr->step == min_step ? CV_MAT_CONT_FLAG : 0); in cvCreateMatHeader()
173 int mask, pix_size, min_step; in cvInitMatHeader() local
194 min_step = arr->cols*pix_size & mask; in cvInitMatHeader()
198 if( step < min_step ) in cvInitMatHeader()
204 arr->step = min_step; in cvInitMatHeader()
208 (arr->step == min_step ? CV_MAT_CONT_FLAG : 0); in cvInitMatHeader()
[all …]
/external/opencv3/modules/core/src/
Darray.cpp121 int min_step = CV_ELEM_SIZE(type)*cols; in cvCreateMatHeader() local
122 if( min_step <= 0 ) in cvCreateMatHeader()
127 arr->step = min_step; in cvCreateMatHeader()
163 int min_step = arr->cols*pix_size; in cvInitMatHeader() local
167 if( step < min_step ) in cvInitMatHeader()
173 arr->step = min_step; in cvInitMatHeader()
177 (arr->rows == 1 || arr->step == min_step ? CV_MAT_CONT_FLAG : 0); in cvInitMatHeader()
898 int pix_size, min_step; in cvSetData() local
909 min_step = mat->cols*pix_size; in cvSetData()
913 if( step < min_step && data != 0 ) in cvSetData()
[all …]