Home
last modified time | relevance | path

Searched refs:min_step (Results 1 – 3 of 3) 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 …]