Lines Matching refs:cfbmask

432 		dst = (*(psrc) &cfbmask[idx]); \
435 dst = BitLeft((*(psrc) &cfbmask[idx]), cfb24Shift[idx]); \
438 dst = BitLeft((*(psrc) &cfbmask[idx]), cfb24Shift[idx]) | \
439 BitRight(((*((psrc)+1)) &cfbmask[idx+1]), cfb24Shift[idx+1]); \
448 dstpixel = (*(pdst) &cfbmask[idx]); \
451 dstpixel = BitLeft((*(pdst) &cfbmask[idx]), cfb24Shift[idx]); \
454 dstpixel = BitLeft((*(pdst) &cfbmask[idx]), cfb24Shift[idx])| \
455 BitRight(((*((pdst)+1)) &cfbmask[idx+1]), cfb24Shift[idx+1]); \
462 *(pdst) |= (dstpixel & cfbmask[idx]); \
468 (BitLeft(dstpixel, cfb24Shift[idx]) & cfbmask[idx]); \
471 *(pdst) |= (BitRight(dstpixel, cfb24Shift[idx]) & cfbmask[idx]); \
482 dstpixel = (*(pdst) &cfbmask[idx]); \
485 dstpixel = BitLeft((*(pdst) &cfbmask[idx]), cfb24Shift[idx]); \
488 dstpixel = BitLeft((*(pdst) &cfbmask[idx]), cfb24Shift[idx])| \
489 BitRight(((*((pdst)+1)) &cfbmask[idx+1]), cfb24Shift[idx+1]); \
497 *(pdst) |= (dstpixel & cfbmask[idx]); \
502 (BitLeft(dstpixel, cfb24Shift[idx+1]) & (cfbmask[idx+1])); \
504 *(pdst) |= (BitRight(dstpixel, cfb24Shift[idx]) & cfbmask[idx]); \
730 dst = (*((unsigned int *) psrc))&cfbmask[index]; \
734 dst = BitLeft(((*((unsigned int *) psrc))&cfbmask[index]), cfb24Shift[index]); \
735 dst |= BitRight(((*((unsigned int *) psrc)+1)&cfbmask[index]), cfb4Shift[index]); \
845 /* src = (((*(psrcpix)) << cfb24Shift[sidx]) & (cfbmask[sidx])) |*/ \
846 /* (((*((psrcpix)+1)) << cfb24Shift[sidx+1]) & (cfbmask[sidx+1])); */\
856 *(destpix) |= (src &cfbmask[didx]); \
862 (BitLeft(src, cfb24Shift[didx]) & (cfbmask[didx])); \
865 *(destpix) |= (BitRight(src, cfb24Shift[didx]) & cfbmask[didx]); \
886 extern PixelGroup cfbmask[];