Searched refs:row_sz (Results 1 - 2 of 2) sorted by relevance

/external/opencv/cv/src/
H A Dcvderiv.cpp383 int min_rows = max_ky*2 + 3, rows = MAX(min_rows,10), row_sz; local
389 row_sz = cvAlign( width*CV_ELEM_SIZE(work_type), ALIGN );
390 buf_size = rows*row_sz;
392 buf_size = MAX( buf_size, min_rows*row_sz );
393 max_rows = (buf_size/row_sz)*3 + max_ky*2 + 8;
H A Dcvfilter.cpp99 int min_rows = max_ky*2 + 3, rows = MAX(min_rows,10), row_sz; local
115 row_sz = cvAlign( width*CV_ELEM_SIZE(work_type), ALIGN );
116 buf_size = rows*row_sz;
118 buf_size = MAX( buf_size, min_rows*row_sz );
119 max_rows = (buf_size/row_sz)*3 + max_ky*2 + 8;

Completed in 52 milliseconds