Home | History | Annotate | Download | only in src

Lines Matching refs:stripe_size

2287 CvMat* icvIPPFilterInit( const CvMat* src, int stripe_size, CvSize ksize )
2293 temp_size.height = (stripe_size*2 + temp_size.width*pix_size) / (temp_size.width*pix_size*2);
2310 CvSize stripe_size, temp_size;
2339 stripe_size = cvSize(src->cols, src_y2 - src_y1);
2342 stripe_size, temp_ptr, temp_step, temp_size,
2398 int align, stripe_size;
2454 stripe_size = src->data.ptr == dst->data.ptr ? 1 << 15 : 1 << 16;
2455 max_dy = MAX( ksize.height - 1, stripe_size/(size.width + ksize.width - 1));
2651 int stripe_size = 1 << 16; // the optimal value may depend on CPU cache,
2683 CV_CALL( temp = icvIPPFilterInit( src, stripe_size, el_size ));