Searched refs:min_step (Results 1 - 3 of 3) sorted by relevance

/external/libunwind/tests/
H A DGperf-simple.c115 double step, min_step, first_step, sum_step; local
119 min_step = 1e99;
126 if (step < min_step)
127 min_step = step;
133 1e9*first_step, 1e9*min_step, 1e9*sum_step/iterations);
H A DGperf-trace.c101 double step, min_step, first_step, sum_step; local
105 min_step = 1e99;
112 if (step < min_step)
113 min_step = step;
119 1e9*first_step, 1e9*min_step, 1e9*sum_step/iterations);
/external/opencv/cxcore/src/
H A Dcxarray.cpp132 int min_step; local
138 min_step = CV_ELEM_SIZE(type)*cols;
139 if( min_step <= 0 )
144 arr->step = rows == 1 ? 0 : cvAlign(min_step, CV_DEFAULT_MAT_ROW_ALIGN);
146 (arr->step == 0 || arr->step == min_step ? CV_MAT_CONT_FLAG : 0);
173 int mask, pix_size, min_step; local
194 min_step = arr->cols*pix_size & mask;
198 if( step < min_step )
204 arr->step = min_step;
208 (arr->step == min_step
1051 int pix_size, min_step; local
[all...]

Completed in 83 milliseconds