Lines Matching defs:DstS
241 SCANLINE *SrcS, *SrcM, *DstS, *DstM;
273 DstS = (SCANLINE*)mem;
274 DstM = DstS + words;
278 tmp = DstS; DstS = DstM; DstM = tmp;
282 for(y = pCurs->bits->height, pSrc = DstS, pMsk = DstM;
291 for(y = pCurs->bits->height, pSrc = DstS, pMsk = DstM;
303 unsigned char* pntr1 = (unsigned char *)DstS;
331 for(y = pCurs->bits->height, pSrc = DstS, pMsk = DstM;
347 unsigned char *DstS, *DstM;
363 DstS = mem2;
364 DstM = DstS + (size >> 1);
368 *pntr++ = ((*DstS&0x01) ) | ((*DstM&0x01) << 1) |
369 ((*DstS&0x02) << 1) | ((*DstM&0x02) << 2) |
370 ((*DstS&0x04) << 2) | ((*DstM&0x04) << 3) |
371 ((*DstS&0x08) << 3) | ((*DstM&0x08) << 4);
372 *pntr++ = ((*DstS&0x10) >> 4) | ((*DstM&0x10) >> 3) |
373 ((*DstS&0x20) >> 3) | ((*DstM&0x20) >> 2) |
374 ((*DstS&0x40) >> 2) | ((*DstM&0x40) >> 1) |
375 ((*DstS&0x80) >> 1) | ((*DstM&0x80) );
376 DstS++;
390 unsigned char *DstS, *DstM;
406 DstS = mem2;
407 DstM = DstS + (size >> 1);
411 *pntr++ = *DstS++;
425 unsigned short *DstS, *DstM;
441 DstS = (pointer)mem2;
442 DstM = DstS + (size >> 2);
446 *pntr++ = *DstS++;
460 CARD32 *DstS, *DstM;
476 DstS = (pointer)mem2;
477 DstM = DstS + (size >> 3);
481 *pntr++ = *DstS++;
495 CARD32 *DstS, *DstM;
511 DstS = (pointer)mem2;
512 DstM = DstS + (size >> 3);
516 *pntr++ = *DstS++;
517 *pntr++ = *DstS++;