Lines Matching refs:skipleft
51 unsigned char *src, int srcwidth, int skipleft,
54 int skipleft, int startline,
65 static void A(SubsequentCPUToScreenColorExpandFill)(ScrnInfoPtr pScrn, int x, int y, int w, int h, int skipleft);
74 int w, int h, int skipleft);
381 unsigned char *src, int srcwidth, int skipleft,
403 w += skipleft;
404 x -= skipleft;
417 if (skipleft || w != wr) {
420 SETCLIP_LEFTTOP(x + skipleft, y);
688 int skipleft, int startline,
700 w2 = w + skipleft;
714 skipleft, fg, bg, rop, planemask);
829 int w, int h, int skipleft)
850 SETCLIP_LEFTTOP(x+skipleft, y);
900 int skipleft)
926 SETCLIP_LEFTTOP(x+skipleft, y);
1178 int dwords, skipleft, Bpp = bpp >> 3;
1196 if ((skipleft = (long)src & 3L) == ((long)dst & 3L) && rop == GXcopy) {
1199 if (skipleft)
1200 skipleft = 4 - skipleft;
1201 dwords = (skipright = w * Bpp - skipleft) >> 2;
1203 if (!skipleft && !skipright)
1213 else if (!skipleft)
1227 CARD32 *src2 = (CARD32 *)(src + skipleft);
1228 CARD32 *dst2 = (CARD32 *)(dst + skipleft);
1230 for (count = skipleft; count-- > 0; )
1239 CARD32 *src2 = (CARD32 *)(src + skipleft);
1240 CARD32 *dst2 = (CARD32 *)(dst + skipleft);
1242 for (count = skipleft; count-- > 0; )
1255 if (skipleft) {
1257 skipleft = 4 - skipleft;
1259 skipleft /= Bpp;
1261 if (x < skipleft) {
1262 skipleft = 0;
1267 x -= skipleft;
1268 w += skipleft;
1271 src -= 3 * skipleft;
1291 A(SubsequentImageWriteRect)(pScrn, x, y, w, h, skipleft);