Lines Matching defs:in
44 * maximum red and maximum blue in order to get exact grayscales.
50 * For even more speed, we avoid doing any multiplications in the inner loop
57 * in the tables to save adding them separately in the inner loop.
67 * address, which can be held in a register in the inner loops on many
94 /* Allocate and fill in the conversion tables. */
319 static void copyquads(const UINT32 in[], UINT32 out0[], UINT32 out1[], UINT32 out2[], int col4)
322 UINT32 src0 = *in++;
323 UINT32 src1 = *in++;
324 UINT32 src2 = *in++;
364 const UINT32* in = (const UINT32*)inptr;
368 copyquads(in, out0, out1, out2, col4);
373 inptr += col4 * 3; /* we read this 3 times per in copyquads */