Lines Matching defs:width

123 static void idctrow(int16 *blk, uint8 *pred, uint8 *dst, int width);
124 static void idctrow_intra(int16 *blk, PIXEL *, int width);
231 int width, width_uv;
233 width = video->width;
234 width_uv = width >> 1;
235 offset = (int32)(y_pos << 4) * width + (x_pos << 4);
241 BlockIDCT_intra(mblock, c_comp, 0, width);
242 BlockIDCT_intra(mblock, c_comp + 8, 1, width);
243 BlockIDCT_intra(mblock, c_comp + (width << 3), 2, width);
244 BlockIDCT_intra(mblock, c_comp + (width << 3) + 8, 3, width);
251 MacroBlock *mblock, PIXEL *c_comp, int comp, int width)
276 (*idctrowVCA_intra[nz_coefs-1])(coeff_in, c_comp, width);
299 (*(idctrowVCA2_intra[(int)bitmaprow]))(coeff_in, c_comp, width);
303 idctrow_intra(coeff_in, c_comp, width);
307 void idct_intra(int *block, uint8 *comp, int width);
308 idct_intra(coeff_in, c_comp, width);
311 void idctref_intra(int *block, uint8 *comp, int width);
312 idctref_intra(coeff_in, c_comp, width);
323 void Copy_Blk_to_Vop(uint8 *dst, uint8 *pred, int width)
326 width -= 4;
329 *((uint32*)(dst += width)) = *((uint32*)(pred += 12));
331 *((uint32*)(dst += width)) = *((uint32*)(pred += 12));
333 *((uint32*)(dst += width)) = *((uint32*)(pred += 12));
335 *((uint32*)(dst += width)) = *((uint32*)(pred += 12));
337 *((uint32*)(dst += width)) = *((uint32*)(pred += 12));
339 *((uint32*)(dst += width)) = *((uint32*)(pred += 12));
341 *((uint32*)(dst += width)) = *((uint32*)(pred += 12));
352 int width, /* width of dst */
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
532 width -= 4;
533 dst -= width;
597 *((uint32*)(dst += width)) = dst_word; /* save 4 bytes to dst */
621 int16 *blk, PIXEL *comp, int width
629 int offset = width;