Lines Matching refs:cfbmask

438 		dst = (*(psrc) &cfbmask[idx]); \
441 dst = BitLeft((*(psrc) &cfbmask[idx]), cfb24Shift[idx]); \
444 dst = BitLeft((*(psrc) &cfbmask[idx]), cfb24Shift[idx]) | \
445 BitRight(((*((psrc)+1)) &cfbmask[idx+1]), cfb24Shift[idx+1]); \
454 dstpixel = (*(pdst) &cfbmask[idx]); \
457 dstpixel = BitLeft((*(pdst) &cfbmask[idx]), cfb24Shift[idx]); \
460 dstpixel = BitLeft((*(pdst) &cfbmask[idx]), cfb24Shift[idx])| \
461 BitRight(((*((pdst)+1)) &cfbmask[idx+1]), cfb24Shift[idx+1]); \
468 *(pdst) |= (dstpixel & cfbmask[idx]); \
474 (BitLeft(dstpixel, cfb24Shift[idx]) & cfbmask[idx]); \
477 *(pdst) |= (BitRight(dstpixel, cfb24Shift[idx]) & cfbmask[idx]); \
488 dstpixel = (*(pdst) &cfbmask[idx]); \
491 dstpixel = BitLeft((*(pdst) &cfbmask[idx]), cfb24Shift[idx]); \
494 dstpixel = BitLeft((*(pdst) &cfbmask[idx]), cfb24Shift[idx])| \
495 BitRight(((*((pdst)+1)) &cfbmask[idx+1]), cfb24Shift[idx+1]); \
503 *(pdst) |= (dstpixel & cfbmask[idx]); \
508 (BitLeft(dstpixel, cfb24Shift[idx+1]) & (cfbmask[idx+1])); \
510 *(pdst) |= (BitRight(dstpixel, cfb24Shift[idx]) & cfbmask[idx]); \
736 dst = (*((unsigned int *) psrc))&cfbmask[index]; \
740 dst = BitLeft(((*((unsigned int *) psrc))&cfbmask[index]), cfb24Shift[index]); \
741 dst |= BitRight(((*((unsigned int *) psrc)+1)&cfbmask[index]), cfb4Shift[index]); \
851 /* src = (((*(psrcpix)) << cfb24Shift[sidx]) & (cfbmask[sidx])) |*/ \
852 /* (((*((psrcpix)+1)) << cfb24Shift[sidx+1]) & (cfbmask[sidx+1])); */\
862 *(destpix) |= (src &cfbmask[didx]); \
868 (BitLeft(src, cfb24Shift[didx]) & (cfbmask[didx])); \
871 *(destpix) |= (BitRight(src, cfb24Shift[didx]) & cfbmask[didx]); \
892 extern PixelGroup cfbmask[];