Home | History | Annotate | Download | only in src

Lines Matching refs:src1

83 ( const srctype *src1, int step1, const srctype *src2, int step2,           \
85 (src1, step1, src2, step2, dst, dststep, size) ) \
87 step1 /= sizeof(src1[0]); \
91 for( ; size.height--; src1 += step1, src2 += step2, dst += dststep ) \
96 dsttype t0 = dst[x] + cvtmacro(src1[x])*cvtmacro(src2[x]); \
97 dsttype t1 = dst[x+1] + cvtmacro(src1[x+1])*cvtmacro(src2[x+1]);\
100 t0 = dst[x + 2] + cvtmacro(src1[x + 2])*cvtmacro(src2[x + 2]); \
101 t1 = dst[x + 3] + cvtmacro(src1[x + 3])*cvtmacro(src2[x + 3]); \
106 dst[x] += cvtmacro(src1[x])*cvtmacro(src2[x]); \
190 ( const srctype *src1, int step1, const srctype* src2, int step2, \
192 (src1, step1, src2, step2, mask, maskstep, dst, dststep, size )) \
194 step1 /= sizeof(src1[0]); \
198 for( ; size.height--; src1 += step1, src2 += step2, \
205 dst[x] += cvtmacro(src1[x])*cvtmacro(src2[x]); \
207 dst[x+1] += cvtmacro(src1[x+1])*cvtmacro(src2[x+1]); \
212 dst[x] += cvtmacro(src1[x])*cvtmacro(src2[x]); \
294 ( const srctype *src1, int step1, const srctype* src2, int step2, \
296 (src1, step1, src2, step2, mask, maskstep, dst, dststep, size )) \
298 step1 /= sizeof(src1[0]); \
302 for( ; size.height--; src1 += step1, src2 += step2, \
310 t0 = dst[x*3]+cvtmacro(src1[x*3])*cvtmacro(src2[x*3]); \
311 t1 = dst[x*3+1]+cvtmacro(src1[x*3+1])*cvtmacro(src2[x*3+1]);\
312 t2 = dst[x*3+2]+cvtmacro(src1[x*3+2])*cvtmacro(src2[x*3+2]);\