Home | History | Annotate | Download | only in src

Lines Matching defs:src_step

47 void icvSepConvSmall3_32f( float* src, int src_step, float* dst, int dst_step,
54 (src_step & 3) == 0 && (dst_step & 3) == 0 &&
57 src_step /= sizeof(src[0]);
73 assert( src_step >= src_size.width && dst_step >= dst_width );
81 buffer_step = src_step;
86 for( y = 0; y <= src_size.height; y++, src += src_step,
90 float* src2 = src + src_step;
91 float* src3 = src + src_step*2;
298 int src_step = src->step ? src->step : CV_STUB_STEP;
318 ipp_sobel_func_8u ? ipp_sobel_func_8u( src_ptr, src_step, dst_ptr, dst_step,
320 ipp_sobel_func_32f ? ipp_sobel_func_32f( src_ptr, src_step, dst_ptr, dst_step,
322 ipp_scharr_func_8u ? ipp_scharr_func_8u( src_ptr, src_step, dst_ptr, dst_step,
324 ipp_scharr_func_32f ? ipp_scharr_func_32f( src_ptr, src_step, dst_ptr, dst_step,
839 int src_step = src->step ? src->step : CV_STUB_STEP;
857 ipp_laplace_func_8u ? ipp_laplace_func_8u( src_ptr, src_step, dst_ptr, dst_step,
859 ipp_laplace_func_32f ? ipp_laplace_func_32f( src_ptr, src_step, dst_ptr, dst_step,