Home | History | Annotate | Download | only in src

Lines Matching defs:src_size

496 icvPyrDownBorder_##flavor##_CnR( const arrtype *src, int src_step, CvSize src_size,     \
505 int W = src_size.width, H = src_size.height; \
514 buf_size = MAX(src_size.width,src_size.height) * sizeof(buf[0]) * 2 * channels; \
1041 CvSize src_size, src_size2, dst_size;
1062 src_size = cvGetMatSize(src);
1064 src_size2.width = src_size.width & -2;
1065 src_size2.height = src_size.height & -2;
1067 if( (unsigned)(dst_size.width - src_size.width/2) > 1 ||
1068 (unsigned)(dst_size.height - src_size.height/2) > 1 )
1072 if( (src_size.width <= 2 && dst_size.width != 1) ||
1073 (src_size.height <= 2 && dst_size.height != 1) )
1121 if( src_size.width != dst_size.width*2 || src_size.height != dst_size.height*2 )
1129 IPPI_CALL( border_func( src->data.ptr, src->step, src_size,