Home | History | Annotate | Download | only in src

Lines Matching defs:_src

89         const uchar* _src = src;
93 for( j = 0; j < size.height; j++, _src += src_step )
94 ((int*)dst)[j] = ((int*)_src)[0];
97 for( j = 0; j < size.height*2; j += 2, _src += src_step )
99 int t0 = ((int*)_src)[0];
100 int t1 = ((int*)_src)[1];
106 for( j = 0; j < size.height*4; j += 4, _src += src_step )
108 int t0 = ((int*)_src)[0];
109 int t1 = ((int*)_src)[1];
112 t0 = ((int*)_src)[2];
113 t1 = ((int*)_src)[3];