HomeSort by relevance Sort by last modified time
    Searched refs:row_sz (Results 1 - 2 of 2) sorted by null

  /external/opencv/cv/src/
cvderiv.cpp 383 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;
    [all...]
cvfilter.cpp 99 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;
    [all...]

Completed in 29 milliseconds