Lines Matching refs:y1
25 int width, height, Bpp, FBPitch, x1, x2, y1, y2;
33 y1 = MAX(pbox->y1, 0);
38 height = y2 - y1;
43 src = pCir->ShadowPtr + (y1 * pCir->ShadowPitch) + (x1 * Bpp);
44 dst = pCir->FbBase + (y1 * FBPitch) + (x1 * Bpp);
78 int count, width, height, x1, x2, y1, y2, dstPitch, srcPitch;
87 y1 = MAX(pbox->y1, 0);
92 y1 = y1 & ~3;
94 height = (y2 - y1) / 4; /* in dwords */
105 ((pScrn->virtualY - x2) * dstPitch) + y1;
106 srcPtr = pCir->ShadowPtr + (y1 * srcPitch) + x2 - 1;
132 int count, width, height, x1, x2, y1, y2, dstPitch, srcPitch;
141 y1 = MAX(pbox->y1, 0);
146 y1 = y1 & ~1;
148 height = (y2 - y1) / 2; /* in dwords */
160 ((pScrn->virtualY - x2) * dstPitch) + y1;
162 (y1 * srcPitch) + x2 - 1;
187 int count, width, height, x1, x2, y1, y2, dstPitch, srcPitch;
196 y1 = MAX(pbox->y1, 0);
201 y1 = y1 & ~3;
203 height = (y2 - y1) / 4; /* blocks of 3 dwords */
214 ((pScrn->virtualY - x2) * dstPitch) + (y1 * 3);
215 srcPtr = pCir->ShadowPtr + (y1 * srcPitch) + (x2 * 3) - 3;
246 int count, width, height, x1, x2, y1, y2, dstPitch, srcPitch;
254 y1 = MAX(pbox->y1, 0);
259 height = y2 - y1;
271 ((pScrn->virtualY - x2) * dstPitch) + y1;
273 (y1 * srcPitch) + x2 - 1;