Lines Matching defs:pCache
1115 XAACacheInfoPtr pCache, cacheRoot = NULL;
1150 pCache = cacheRoot;
1153 for(i = 0; i < max; i++, pCache++) {
1154 if((pCache->serialNumber == pPix->drawable.serialNumber) &&
1155 (pCache->fg == -1) && (pCache->bg == -1)) {
1156 pCache->trans_color = -1;
1158 cAcl->SlotWidth = ((pCache->w * bpp) >> 5) >> 1;
1159 return pCache;
1163 pCache = &cacheRoot[(*current)++];
1166 pCache->serialNumber = pPix->drawable.serialNumber;
1167 pCache->trans_color = pCache->bg = pCache->fg = -1;
1168 pCache->orig_w = w; pCache->orig_h = h;
1175 pad = (((pCache->w * bpp) + 31) >> 5) << 2;
1176 dstPtr = data = malloc(pad * pCache->h);
1180 dwords = ((pCache->w * bpp) >> 5) >> 3;
1192 while((h<<1) <= pCache->h) {
1197 if(h < pCache->h)
1198 memcpy(data + (pad * h), data, pad * (pCache->h - h));
1201 pScrn, pCache->x, pCache->y, pCache->w, pCache->h, data,
1206 return pCache;