Lines Matching defs:srcPitch
217 int count, width, height, y1, y2, dstPitch, srcPitch;
222 srcPitch = -pSiS->Rotate * pSiS->ShadowPitch;
232 srcPtr = pSiS->ShadowPtr + ((1 - y2) * srcPitch) + pbox->x1;
235 srcPtr = pSiS->ShadowPtr + (y1 * srcPitch) + pbox->x2 - 1;
244 (src[srcPitch] << 8) |
245 (src[srcPitch * 2] << 16) |
246 (src[srcPitch * 3] << 24);
247 src += (srcPitch * 4);
261 int count, width, height, y1, y2, dstPitch, srcPitch;
266 srcPitch = -pSiS->Rotate * pSiS->ShadowPitch >> 1;
276 srcPtr = (CARD16 *)pSiS->ShadowPtr + ((1 - y2) * srcPitch) + pbox->x1;
279 srcPtr = (CARD16 *)pSiS->ShadowPtr + (y1 * srcPitch) + pbox->x2 - 1;
287 *(dst++) = src[0] | (src[srcPitch] << 16);
288 src += (srcPitch * 2);
303 int count, width, height, y1, y2, dstPitch, srcPitch;
308 srcPitch = -pSiS->Rotate * pSiS->ShadowPitch;
318 srcPtr = pSiS->ShadowPtr + ((1 - y2) * srcPitch) + (pbox->x1 * 3);
321 srcPtr = pSiS->ShadowPtr + (y1 * srcPitch) + (pbox->x2 * 3) - 3;
332 (src[srcPitch] << 24);
333 dst[1] = src[srcPitch + 1] |
334 (src[srcPitch + 2] << 8) |
335 (src[srcPitch * 2] << 16) |
336 (src[(srcPitch * 2) + 1] << 24);
337 dst[2] = src[(srcPitch * 2) + 2] |
338 (src[srcPitch * 3] << 8) |
339 (src[(srcPitch * 3) + 1] << 16) |
340 (src[(srcPitch * 3) + 2] << 24);
342 src += (srcPitch << 2);
356 int count, width, height, dstPitch, srcPitch;
360 srcPitch = -pSiS->Rotate * pSiS->ShadowPitch >> 2;
368 srcPtr = (CARD32 *)pSiS->ShadowPtr + ((1 - pbox->y2) * srcPitch) + pbox->x1;
371 srcPtr = (CARD32 *)pSiS->ShadowPtr + (pbox->y1 * srcPitch) + pbox->x2 - 1;
380 src += srcPitch;