Lines Matching refs:src2

63 ( const uchar* src1, int step1, const uchar* src2, int step2,                       \
64 uchar* dst, int step, CvSize size ), (src1, step1, src2, step2, dst, step, size) )\
66 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \
70 if( (((size_t)src1 | (size_t)src2 | (size_t)dst) & 3) == 0 ) \
74 int t0 = __op__(((const int*)(src1+i))[0], ((const int*)(src2+i))[0]);\
75 int t1 = __op__(((const int*)(src1+i))[1], ((const int*)(src2+i))[1]);\
80 t0 = __op__(((const int*)(src1+i))[2], ((const int*)(src2+i))[2]); \
81 t1 = __op__(((const int*)(src1+i))[3], ((const int*)(src2+i))[3]); \
89 int t = __op__(*(const int*)(src1+i), *(const int*)(src2+i)); \
96 int t = __op__(((const uchar*)src1)[i],((const uchar*)src2)[i]); \
353 CvMat srcstub2, *src2 = (CvMat*)srcarr2;
369 if( !CV_IS_MAT(src2))
371 if( CV_IS_MATND(src2) )
374 CV_CALL( src2 = cvGetMat( src2, &srcstub2, &coi2 ));
387 CvArr* arrs[] = { src1, src2, dst };
414 if( !CV_ARE_TYPES_EQ( src1, src2 ) )
417 if( !CV_ARE_SIZES_EQ( src1, src2 ) )
432 cont_flag = CV_IS_MAT_CONT( src1->type & src2->type & dst->type );
449 cont_flag = CV_IS_MAT_CONT( src1->type & src2->type & dst->type & mask->type );
471 src2_step = src2->step;
489 src2->data.ptr + y*src2->step, src2_step,
527 cvXor( const void* src1, const void* src2, void* dst, const void* mask )
529 icvLogic( src1, src2, dst, mask, (CvFunc2D_3A)icvXor_8u_C1R );
544 cvAnd( const void* src1, const void* src2, void* dst, const void* mask )
546 icvLogic( src1, src2, dst, mask, (CvFunc2D_3A)icvAnd_8u_C1R );
562 cvOr( const void* src1, const void* src2, void* dst, const void* mask )
564 icvLogic( src1, src2, dst, mask, (CvFunc2D_3A)icvOr_8u_C1R );