Home | History | Annotate | Download | only in jpeg

Lines Matching refs:col4

319 static void copyquads(const UINT32 in[], UINT32 out0[], UINT32 out1[], UINT32 out2[], int col4)
329 } while (--col4 != 0);
360 int col4 = col >> 2;
361 if (col4 > 0 && ptr_is_quad(inptr) && ptr_is_quad(outptr0) &&
368 copyquads(in, out0, out1, out2, col4);
372 col4 <<= 2;
373 inptr += col4 * 3; /* we read this 3 times per in copyquads */
374 outptr0 += col4;
375 outptr1 += col4;
376 outptr2 += col4;