Home | History | Annotate | Download | only in simd

Lines Matching refs:RGB_PIXELSIZE

32   int pitch = output_width * RGB_PIXELSIZE, num_cols, yloop;
36 unsigned char __attribute__((aligned(16))) tmpbuf[RGB_PIXELSIZE * 16];
42 #if RGB_PIXELSIZE == 4
46 #if RGB_PIXELSIZE == 4
148 num_cols -= RGB_PIXELSIZE * 16,
149 outptr += RGB_PIXELSIZE * 16, inptr0 += 16) {
192 #if RGB_PIXELSIZE == 3
228 if (bytes < (RGB_PIXELSIZE + 1) * 16 && (bytes & 15)) {
239 #if RGB_PIXELSIZE == 4
242 memcpy(outptr, tmpbuf, min(num_cols, RGB_PIXELSIZE * 16));
247 edgeh = vec_ld(min(num_cols - 1, RGB_PIXELSIZE * 16), outptr);
253 #if RGB_PIXELSIZE == 4
266 #if RGB_PIXELSIZE == 4
273 if (num_cols < RGB_PIXELSIZE * 16 && (num_cols & 15)) {
278 #if RGB_PIXELSIZE == 4
281 memcpy(outptr, tmpbuf, min(num_cols, RGB_PIXELSIZE * 16));
289 #if RGB_PIXELSIZE == 4