Home | History | Annotate | Download | only in src

Lines Matching refs:src3

58              a2 = src2[x], a3 = src3[x];                        \
68 a2 = src2[x*2], a3 = src3[x*2]; \
72 a3 = src3[x*2+1]; \
82 a2 = src2[x*3], a3 = src3[x*3]; \
86 a3 = src3[x*3+1]; \
90 a3 = src3[x*3+2]; \
100 a2 = src2[x*4], a3 = src3[x*4]; \
104 a3 = src3[x*4+1]; \
108 a3 = src3[x*4+2]; \
112 a3 = src3[x*4+3]; \
123 const arrtype* src3, int step3, \
127 step3 /= sizeof(src3[0]); step /= sizeof(dst[0]); \
130 src3 += step3, dst += step ) \
258 CvMat srcstub3, *src3 = (CvMat*)srcarr3;
283 if( !CV_IS_MAT(src3) )
285 CV_CALL( src3 = cvGetMat( src3, &srcstub3, &coi ));
298 !CV_ARE_TYPES_EQ( src1, src3 ) )
305 !CV_ARE_SIZES_EQ( src1, src3 ) ||
312 if( CV_IS_MAT_CONT( src1->type & src2->type & src3->type & dst->type ))
322 src3_step = src3->step;
335 src3->data.ptr, src3_step, dst->data.ptr, dst_step, size ));