Lines Matching defs:pred

123 static void idctrow(int16 *blk, uint8 *pred, uint8 *dst, int width);
322 /* 08/04/05, no residue, just copy from pred to output */
323 void Copy_Blk_to_Vop(uint8 *dst, uint8 *pred, int width)
327 *((uint32*)dst) = *((uint32*)pred);
328 *((uint32*)(dst += 4)) = *((uint32*)(pred += 4));
329 *((uint32*)(dst += width)) = *((uint32*)(pred += 12));
330 *((uint32*)(dst += 4)) = *((uint32*)(pred += 4));
331 *((uint32*)(dst += width)) = *((uint32*)(pred += 12));
332 *((uint32*)(dst += 4)) = *((uint32*)(pred += 4));
333 *((uint32*)(dst += width)) = *((uint32*)(pred += 12));
334 *((uint32*)(dst += 4)) = *((uint32*)(pred += 4));
335 *((uint32*)(dst += width)) = *((uint32*)(pred += 12));
336 *((uint32*)(dst += 4)) = *((uint32*)(pred += 4));
337 *((uint32*)(dst += width)) = *((uint32*)(pred += 12));
338 *((uint32*)(dst += 4)) = *((uint32*)(pred += 4));
339 *((uint32*)(dst += width)) = *((uint32*)(pred += 12));
340 *((uint32*)(dst += 4)) = *((uint32*)(pred += 4));
341 *((uint32*)(dst += width)) = *((uint32*)(pred += 12));
342 *((uint32*)(dst += 4)) = *((uint32*)(pred += 4));
350 uint8 *pred, /* prediction block, pitch 16 */
372 (*idctrowVCA[nz_coefs-1])(coeff_in, pred, dst, width);
396 (*(idctrowVCA2[bitmaprow>>4]))(coeff_in, pred, dst, width);
400 idctrow(coeff_in, pred, dst, width);
405 void idct(int *block, uint8 *pred, uint8 *dst, int width);
406 idct(coeff_in, pred, dst, width);
410 void idctref(int *block, uint8 *pred, uint8 *dst, int width);
411 idctref(coeff_in, pred, dst, width);
510 int16 *blk, uint8 *pred, uint8 *dst, int width
534 pred -= 12;
584 pred_word = *((uint32*)(pred += 12)); /* read 4 bytes from pred */
599 pred_word = *((uint32*)(pred += 4)); /* read 4 bytes from pred */