Lines Matching defs:DstS
401 SCANLINE *SrcS, *SrcM, *DstS, *DstM;
433 DstS = (SCANLINE *) mem;
434 DstM = DstS + words;
439 tmp = DstS;
440 DstS = DstM;
445 for (y = pCurs->bits->height, pSrc = DstS, pMsk = DstM;
456 for (y = pCurs->bits->height, pSrc = DstS, pMsk = DstM;
469 unsigned char *pntr1 = (unsigned char *) DstS;
500 for (y = pCurs->bits->height, pSrc = DstS, pMsk = DstM;
515 unsigned char *DstS, *DstM;
531 DstS = mem2;
532 DstM = DstS + (size >> 1);
536 *pntr++ = ((*DstS & 0x01)) | ((*DstM & 0x01) << 1) |
537 ((*DstS & 0x02) << 1) | ((*DstM & 0x02) << 2) |
538 ((*DstS & 0x04) << 2) | ((*DstM & 0x04) << 3) |
539 ((*DstS & 0x08) << 3) | ((*DstM & 0x08) << 4);
540 *pntr++ = ((*DstS & 0x10) >> 4) | ((*DstM & 0x10) >> 3) |
541 ((*DstS & 0x20) >> 3) | ((*DstM & 0x20) >> 2) |
542 ((*DstS & 0x40) >> 2) | ((*DstM & 0x40) >> 1) |
543 ((*DstS & 0x80) >> 1) | ((*DstM & 0x80));
544 DstS++;
558 unsigned char *DstS, *DstM;
574 DstS = mem2;
575 DstM = DstS + (size >> 1);
579 *pntr++ = *DstS++;
593 unsigned short *DstS, *DstM;
609 DstS = (void *) mem2;
610 DstM = DstS + (size >> 2);
614 *pntr++ = *DstS++;
628 CARD32 *DstS, *DstM;
644 DstS = (void *) mem2;
645 DstM = DstS + (size >> 3);
649 *pntr++ = *DstS++;
663 CARD32 *DstS, *DstM;
679 DstS = (void *) mem2;
680 DstM = DstS + (size >> 3);
684 *pntr++ = *DstS++;
685 *pntr++ = *DstS++;