Lines Matching defs:pCache
185 XAACacheInfoPtr pCache;
208 pCache = (*infoRec->CacheColor8x8Pattern)(infoRec->pScrn, pPix, fg, bg);
211 (xorg + pGC->patOrg.x), (yorg + pGC->patOrg.y), pCache);
260 XAACacheInfoPtr pCache;
264 pCache = (*infoRec->CacheStipple)(infoRec->pScrn, pGC->stipple,
268 pCache = (*infoRec->CacheStipple)(infoRec->pScrn, pGC->stipple,
272 pCache = (*infoRec->CacheTile)(infoRec->pScrn, pGC->tile.pixmap);
275 pCache = NULL;
281 (xorg + pGC->patOrg.x), (yorg + pGC->patOrg.y), pCache);
352 XAACacheInfoPtr pCache = &(infoRec->ScratchCacheInfoRec);
355 pCache->x = pPriv->offscreenArea->box.x1;
356 pCache->y = pPriv->offscreenArea->box.y1;
357 pCache->w = pCache->orig_w =
358 pPriv->offscreenArea->box.x2 - pCache->x;
359 pCache->h = pCache->orig_h =
360 pPriv->offscreenArea->box.y2 - pCache->y;
361 pCache->trans_color = -1;
366 pCache);
428 XAACacheInfoPtr pCache =
430 patx = pCache->x; paty = pCache->y;
434 patx += pCache->offsets[slot].x;
435 paty += pCache->offsets[slot].y;
466 XAACacheInfoPtr pCache = NULL;
470 pCache = (*infoRec->CacheMono8x8Pattern)(pScrn, pattern0, pattern1);
471 patx = pCache->x; paty = pCache->y;
494 xorg = patx + pCache->offsets[slot].x;
495 yorg = paty + pCache->offsets[slot].y;
522 XAACacheInfoPtr pCache
525 int patx = pCache->x, paty = pCache->y;
532 paty += pCache->offsets[slot].y;
533 patx += pCache->offsets[slot].x;
538 rop, planemask, pCache->trans_color);
557 XAACacheInfoPtr pCache
562 (*infoRec->SetupForColor8x8PatternFill)(pScrn, pCache->x, pCache->y,
563 rop, planemask, pCache->trans_color);
572 yorg = pCache->y + pCache->offsets[slot].y;
573 xorg = pCache->x + pCache->offsets[slot].x;
598 XAACacheInfoPtr pCache
604 pCache->trans_color);
608 phaseY = (y - yorg) % pCache->orig_h;
609 if(phaseY < 0) phaseY += pCache->orig_h;
610 phaseX = (pBox->x1 - xorg) % pCache->orig_w;
611 if(phaseX < 0) phaseX += pCache->orig_w;
619 blit_h = pCache->h - phaseY;
623 blit_w = pCache->w - skipleft;
626 pCache->x + skipleft, pCache->y + phaseY,
631 skipleft = (skipleft + blit_w) % pCache->orig_w;
632 if(blit_w >= pCache->orig_w) break;
638 if (skipleft < 0) skipleft += pCache->orig_w;
653 phaseY = (phaseY + blit_h) % pCache->orig_h;
654 if(blit_h >= pCache->orig_h) break;
660 phaseY -= (pBox->y1 - yorg) % pCache->orig_h;
661 if (phaseY < 0) phaseY += pCache->orig_h;
677 blit_h = pCache->h - phaseY;
681 blit_w = pCache->w - skipleft;
684 pCache->x + skipleft, pCache->y + phaseY,
689 skipleft = (skipleft + blit_w) % pCache->orig_w;
694 phaseY = (phaseY + blit_h) % pCache->orig_h;
725 XAACacheInfoPtr pCache;
727 pCache = (*infoRec->CacheMonoStipple)(pScrn, pPix);
729 cacheWidth = (pCache->w * pScrn->bitsPerPixel) /
737 phaseY = (y - yorg) % pCache->orig_h;
738 if(phaseY < 0) phaseY += pCache->orig_h;
739 phaseX = (pBox->x1 - xorg) % pCache->orig_w;
740 if(phaseX < 0) phaseX += pCache->orig_w;
746 blit_h = pCache->h - phaseY;
754 pCache->x, pCache->y + phaseY, skipleft);
758 skipleft = (skipleft + blit_w) % pCache->orig_w;
763 phaseY = (phaseY + blit_h) % pCache->orig_h;