Lines Matching defs:srcPitch
78 int count, width, height, y1, y2, dstPitch, srcPitch;
83 srcPitch = -nPtr->rotate * nPtr->ShadowPitch;
94 srcPtr = nPtr->ShadowPtr + ((1 - y2) * srcPitch) + pbox->x1;
98 srcPtr = nPtr->ShadowPtr + (y1 * srcPitch) + pbox->x2 - 1;
106 *(dst++) = src[0] | (src[srcPitch] << 8) |
107 (src[srcPitch * 2] << 16) |
108 (src[srcPitch * 3] << 24);
109 src += srcPitch * 4;
124 int count, width, height, y1, y2, dstPitch, srcPitch;
129 srcPitch = -nPtr->rotate * nPtr->ShadowPitch >> 1;
141 ((1 - y2) * srcPitch) + pbox->x1;
146 (y1 * srcPitch) + pbox->x2 - 1;
154 *(dst++) = src[0] | (src[srcPitch] << 16);
155 src += srcPitch * 2;
171 int count, width, height, y1, y2, dstPitch, srcPitch;
176 srcPitch = -nPtr->rotate * nPtr->ShadowPitch;
187 srcPtr = nPtr->ShadowPtr + ((1 - y2) * srcPitch) + (pbox->x1 * 3);
191 srcPtr = nPtr->ShadowPtr + (y1 * srcPitch) + (pbox->x2 * 3) - 3;
200 (src[srcPitch] << 24);
201 dst[1] = src[srcPitch + 1] | (src[srcPitch + 2] << 8) |
202 (src[srcPitch * 2] << 16) |
203 (src[(srcPitch * 2) + 1] << 24);
204 dst[2] = src[(srcPitch * 2) + 2] | (src[srcPitch * 3] << 8) |
205 (src[(srcPitch * 3) + 1] << 16) |
206 (src[(srcPitch * 3) + 2] << 24);
208 src += srcPitch * 4;
222 int count, width, height, dstPitch, srcPitch;
226 srcPitch = -nPtr->rotate * nPtr->ShadowPitch >> 2;
236 ((1 - pbox->y2) * srcPitch) + pbox->x1;
241 (pbox->y1 * srcPitch) + pbox->x2 - 1;
250 src += srcPitch;