Home | History | Annotate | Download | only in src

Lines Matching defs:dst

53         dst[i] = t0;                        \
54 dst[i+1] = t1; \
58 dst[i+2] = t0; \
59 dst[i+3] = t1; \
65 dst[i] = t0; \
74 dst[i] = t0; \
75 dst[i+1] = t1; \
84 dst[i] = t0; \
85 dst[i+1] = t1; \
86 dst[i+2] = t2; \
94 dst[i] = t0; \
95 dst[i+1] = t1; \
98 dst[i+2] = t0; \
99 dst[i+3] = t1; \
106 dsttype* dst, int dststep, CvSize size, \
110 dststep /= sizeof(dst[0]); \
111 for( ; size.height--; src += srcstep, dst += dststep ) \
135 dsttype* dst, int dststep, CvSize size, \
143 dststep /= sizeof(dst[0]); \
147 for( ; size.height--; src+=srcstep, dst+=dststep ) \
150 dst[i+k] = _lut[src[i+k]*cn+k]; \
159 for( ; size.height--; src += srcstep, dst += dststep ) \
164 for( k=0; k<cn; k++, src++, dst++ ) \
171 dst[j] = t0; dst[j+cn] = t1; \
175 dst[j] = lut[src[j]]; \
178 dst -= cn; \
207 const void* src, int srcstep, void* dst,
224 CvMat dststub, *dst = (CvMat*)dstarr;
244 if( !CV_IS_MAT(dst) )
245 CV_CALL( dst = cvGetMat( dst, &dststub, &coi2 ));
253 if( !CV_ARE_SIZES_EQ( src, dst ))
256 if( !CV_ARE_CNS_EQ( src, dst ))
262 depth = CV_MAT_DEPTH( dst->type );
263 cn = CV_MAT_CN( dst->type );
267 !CV_ARE_DEPTHS_EQ( dst, lut ) || lut->width*lut->height != 256 )
278 if( CV_IS_MAT_CONT( src->type & dst->type ))
306 IPPI_CALL( func( src->data.ptr, src->step, dst->data.ptr,
307 dst->step, size, lut_data ));
317 IPPI_CALL( func( src->data.ptr, src->step, dst->data.ptr,
318 dst->step, size, lut_data, cn ));