Home | History | Annotate | Download | only in src

Lines Matching refs:step

83       type* dst, int step, CvSize size ),                                   \
84 (src1, step1, src2, step2, dst, step, size) ) \
86 step1/=sizeof(src1[0]); step2/=sizeof(src2[0]); step/=sizeof(dst[0]); \
90 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \
98 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \
112 type* dst, int step, CvSize size, int /*scalefactor*/ ), \
113 (src1, step1, src2, step2, dst, step, size, 0) ) \
115 step1/=sizeof(src1[0]); step2/=sizeof(src2[0]); step/=sizeof(dst[0]); \
119 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \
127 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \
192 ( const type* src, int step1, type* dst, int step, \
195 step1 /= sizeof(src[0]); step /= sizeof(dst[0]); \
199 for( ; size.height--; src += step1, dst += step ) \
207 for( ; size.height--; src += step1, dst += step ) \
444 dstbuf.step = cvAlign( dstbuf.step, 8 );
445 buf_size = dstbuf.step ? dstbuf.step*dy : size.width*elem_size;
480 src1_step = src1->step;
481 src2_step = src2->step;
482 dst_step = dst->step;
483 tdst_step = tdst->step;
484 mask_step = mask ? mask->step : 0;
500 func_sfs( src1->data.ptr + y*src1->step, src1_step,
501 src2->data.ptr + y*src2->step, src2_step,
504 func( src1->data.ptr + y*src1->step, src1_step,
505 src2->data.ptr + y*src2->step, src2_step,
511 IPPI_CALL( copym_func( tdst->data.ptr, tdst_step, dst->data.ptr + y*dst->step,
512 dst_step, tsize, mask->data.ptr + y*mask->step, mask_step ));
688 dstbuf.step = cvAlign( dstbuf.step, 8 );
689 buf_size = dstbuf.step ? dstbuf.step*dy : size.width*elem_size;
707 src_step = src->step;
708 dst_step = dst->step;
709 tdst_step = tdst->step;
710 mask_step = mask ? mask->step : 0;
727 IPPI_CALL( func( src->data.ptr + y*src->step, src_step,
732 IPPI_CALL( copym_func( tdst->data.ptr, tdst_step, dst->data.ptr + y*dst->step,
733 dst_step, tsize, mask->data.ptr + y*mask->step, mask_step ));
916 dstbuf.step = cvAlign( dstbuf.step, 8 );
917 buf_size = dstbuf.step ? dstbuf.step*dy : size.width*elem_size;
952 src1_step = src1->step;
953 src2_step = src2->step;
954 dst_step = dst->step;
955 tdst_step = tdst->step;
956 mask_step = mask ? mask->step : 0;
972 func_sfs( src1->data.ptr + y*src1->step, src1_step,
973 src2->data.ptr + y*src2->step, src2_step,
976 func( src1->data.ptr + y*src1->step, src1_step,
977 src2->data.ptr + y*src2->step, src2_step,
983 IPPI_CALL( copym_func( tdst->data.ptr, tdst_step, dst->data.ptr + y*dst->step,
984 dst_step, tsize, mask->data.ptr + y*mask->step, mask_step ));
1160 dstbuf.step = cvAlign( dstbuf.step, 8 );
1161 buf_size = dstbuf.step ? dstbuf.step*dy : size.width*elem_size;
1179 src_step = src->step;
1180 dst_step = dst->step;
1181 tdst_step = tdst->step;
1182 mask_step = mask ? mask->step : 0;
1199 IPPI_CALL( func( src->data.ptr + y*src->step, src_step,
1204 IPPI_CALL( copym_func( tdst->data.ptr, tdst_step, dst->data.ptr + y*dst->step,
1205 dst_step, tsize, mask->data.ptr + y*mask->step, mask_step ));
1223 arrtype* dst, int step, \
1226 step1 /= sizeof(src1[0]); step2 /= sizeof(src2[0]); step /= sizeof(dst[0]); \
1230 for( ; size.height--; src1+=step1, src2+=step2, dst+=step ) \
1257 for( ; size.height--; src1+=step1, src2+=step2, dst+=step ) \
1305 void* dst, int step,
1451 src1_step = src1->step;
1452 src2_step = src2->step;
1453 dst_step = dst->step;
1476 arrtype* dst, int step, \
1479 step1 /= sizeof(src1[0]); step2 /= sizeof(src2[0]); step /= sizeof(dst[0]); \
1481 for( ; size.height--; src1+=step1, src2+=step2, dst+=step ) \
1542 arrtype* dst, int step, \
1545 step1 /= sizeof(src[0]); step /= sizeof(dst[0]); \
1547 for( ; size.height--; src+=step1, dst+=step ) \
1651 void* dst, int step,
1790 src1_step = src1 ? src1->step : 0;
1791 src2_step = src2->step;
1792 dst_step = dst->step;
1826 double gamma, arrtype* dst, int step, CvSize size )\
1828 step1 /= sizeof(src1[0]); step2 /= sizeof(src2[0]); step /= sizeof(dst[0]); \
1830 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \
1871 double gamma, uchar* dst, int step, CvSize size )
1898 for( ; size.height--; src1 += step1, src2 += step2, dst += step )
1927 for( ; size.height--; src1 += step1, src2 += step2, dst += step )
1971 int step, CvSize size );
2020 srcA_step = srcA->step;
2021 srcB_step = srcB->step;
2022 dst_step = dst->step;