Lines Matching refs:step
64 uchar* dst, int step, CvSize size ), (src1, step1, src2, step2, dst, step, size) )\
66 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \
112 ( const uchar* src0, int step1, uchar* dst0, int step, CvSize size, \
117 for( ; size.height--; src0 += step1, dst0 += step ) \
288 dstbuf.step = cvAlign( dstbuf.step, 8 ); in icvLogicS()
289 buf_size = dstbuf.step ? dstbuf.step*dy : size.width*elem_size; in icvLogicS()
303 src_step = src->step; in icvLogicS()
304 dst_step = dst->step; in icvLogicS()
305 tdst_step = tdst->step; in icvLogicS()
306 mask_step = mask ? mask->step : 0; in icvLogicS()
321 IPPI_CALL( fn_2d( src->data.ptr + y*src->step, src_step, tdst->data.ptr, tdst_step, in icvLogicS()
325 IPPI_CALL( copym_func( tdst->data.ptr, tdst_step, dst->data.ptr + y*dst->step, in icvLogicS()
326 dst_step, tsize, mask->data.ptr + y*mask->step, mask_step )); in icvLogicS()
455 dstbuf.step = cvAlign( dstbuf.step, 8 ); in icvLogic()
456 buf_size = dstbuf.step ? dstbuf.step*dy : size.width*elem_size; in icvLogic()
470 src1_step = src1->step; in icvLogic()
471 src2_step = src2->step; in icvLogic()
472 dst_step = dst->step; in icvLogic()
473 tdst_step = tdst->step; in icvLogic()
474 mask_step = mask ? mask->step : 0; in icvLogic()
488 IPPI_CALL( fn_2d( src1->data.ptr + y*src1->step, src1_step, in icvLogic()
489 src2->data.ptr + y*src2->step, src2_step, in icvLogic()
494 IPPI_CALL( copym_func( tdst->data.ptr, tdst_step, dst->data.ptr + y*dst->step, in icvLogic()
495 dst_step, tsize, mask->data.ptr + y*mask->step, mask_step )); in icvLogic()
574 ( const uchar* src1, int step1, uchar* dst, int step, CvSize size ),
575 (src1, step1, dst, step, size) )
577 for( ; size.height--; src1 += step1, dst += step )
678 src_step = src->step; in cvNot()
679 dst_step = dst->step; in cvNot()