Lines Matching defs:srcPitch

321                                  int srcPitch, int dstPitch, int top, int left, int h, int w)
329 "srcPitch: %d, dstPitch: %d\n", top, left, h, w,
330 srcPitch, dstPitch);
333 src = buf + (top * srcPitch) + (left << 1);
347 src += srcPitch;
360 src += srcPitch;
363 src = buf + (top * srcPitch) + (left << 1);
368 src[(j * 2) + 1 + (i * srcPitch)];
370 src[(j * 2) + 1 + ((i + 1) * srcPitch)];
373 src[(j * 2) + 3 + (i * srcPitch)];
375 src[(j * 2) + 3 + ((i + 1) * srcPitch)];
393 src += srcPitch;
405 src += srcPitch;
408 src = buf + (top * srcPitch) + (left << 1);
413 src[(j * 2) + 1 + (i * srcPitch)];
416 src[(j * 2) + 1 + ((i + 1) * srcPitch)];
419 src[(j * 2) + 3 + (i * srcPitch)];
422 src[(j * 2) + 3 + ((i + 1) * srcPitch)];
434 int dstPitch, int srcPitch, Rotation rotation)
442 if (srcPitch == dstPitch && srcPitch == width)
443 memcpy(dst, src, srcPitch * height);
447 src += srcPitch;
457 src += srcPitch;
467 src += srcPitch;
476 src += srcPitch;
484 unsigned char *buf, int srcPitch, int srcPitch2,
492 ErrorF("intel_video_copy_planar_data: srcPitch %d, srcPitch %d, dstPitch %d\n"
494 srcPitch, srcPitch2, dstPitch, h, w, top, left);
498 src1 = buf + (top * srcPitch) + left;
511 intel_memcpy_plane(dst1, src1, h, w, dstPitch2, srcPitch,
516 (srcH * srcPitch) + /* move over Luma plane */
534 (srcH * srcPitch) + /* move over Luma plane */
612 ErrorF("srcPitch: %d, dstPitch: %d, size: %d\n", srcPitch, *dstPitch,
659 int srcPitch = 0, srcPitch2 = 0;
663 srcPitch = ALIGN(width, 0x4);
666 srcPitch = width << 1;
677 return intel_video_copy_planar_data(adaptor_priv, buf, srcPitch, srcPitch2,
682 return intel_video_copy_packed_data(adaptor_priv, buf, srcPitch, *dstPitch, top, left,