Home | History | Annotate | Download | only in src

Lines Matching defs:dst_step

47 void icvSepConvSmall3_32f( float* src, int src_step, float* dst, int dst_step,
54 (src_step & 3) == 0 && (dst_step & 3) == 0 &&
58 dst_step /= sizeof(dst[0]);
68 buffer_step = dst_step;
73 assert( src_step >= src_size.width && dst_step >= dst_width );
87 dst += dst_step,
299 int dst_step = dst->step ? dst->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,
356 static void icvLaplaceCol_32s16s( const int** src, short* dst, int dst_step,
358 static void icvLaplaceCol_32f( const float** src, float* dst, int dst_step,
545 int dst_step, int count, void* params )
563 dst_step /= sizeof(dst[0]);
571 for( ; count--; dst += dst_step, src++ )
687 int dst_step, int count, void* params )
705 dst_step /= sizeof(dst[0]);
713 for( ; count--; dst += dst_step, src++ )
840 int dst_step = dst->step ? dst->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,