Lines Matching refs:cfbmask

437 		dst = (*(psrc) &cfbmask[idx]); \
440 dst = BitLeft((*(psrc) &cfbmask[idx]), cfb24Shift[idx]); \
443 dst = BitLeft((*(psrc) &cfbmask[idx]), cfb24Shift[idx]) | \
444 BitRight(((*((psrc)+1)) &cfbmask[idx+1]), cfb24Shift[idx+1]); \
453 dstpixel = (*(pdst) &cfbmask[idx]); \
456 dstpixel = BitLeft((*(pdst) &cfbmask[idx]), cfb24Shift[idx]); \
459 dstpixel = BitLeft((*(pdst) &cfbmask[idx]), cfb24Shift[idx])| \
460 BitRight(((*((pdst)+1)) &cfbmask[idx+1]), cfb24Shift[idx+1]); \
467 *(pdst) |= (dstpixel & cfbmask[idx]); \
473 (BitLeft(dstpixel, cfb24Shift[idx]) & cfbmask[idx]); \
476 *(pdst) |= (BitRight(dstpixel, cfb24Shift[idx]) & cfbmask[idx]); \
487 dstpixel = (*(pdst) &cfbmask[idx]); \
490 dstpixel = BitLeft((*(pdst) &cfbmask[idx]), cfb24Shift[idx]); \
493 dstpixel = BitLeft((*(pdst) &cfbmask[idx]), cfb24Shift[idx])| \
494 BitRight(((*((pdst)+1)) &cfbmask[idx+1]), cfb24Shift[idx+1]); \
502 *(pdst) |= (dstpixel & cfbmask[idx]); \
507 (BitLeft(dstpixel, cfb24Shift[idx+1]) & (cfbmask[idx+1])); \
509 *(pdst) |= (BitRight(dstpixel, cfb24Shift[idx]) & cfbmask[idx]); \
735 dst = (*((unsigned int *) psrc))&cfbmask[index]; \
739 dst = BitLeft(((*((unsigned int *) psrc))&cfbmask[index]), cfb24Shift[index]); \
740 dst |= BitRight(((*((unsigned int *) psrc)+1)&cfbmask[index]), cfb4Shift[index]); \
850 /* src = (((*(psrcpix)) << cfb24Shift[sidx]) & (cfbmask[sidx])) |*/ \
851 /* (((*((psrcpix)+1)) << cfb24Shift[sidx+1]) & (cfbmask[sidx+1])); */\
861 *(destpix) |= (src &cfbmask[didx]); \
867 (BitLeft(src, cfb24Shift[didx]) & (cfbmask[didx])); \
870 *(destpix) |= (BitRight(src, cfb24Shift[didx]) & cfbmask[didx]); \
891 extern PixelGroup cfbmask[];