Lines Matching refs:nFillByte
948 sal_uInt8 nFillByte; in ImplFastEraseBitmap() local
954 nFillByte = rColor.GetIndex(); in ImplFastEraseBitmap()
955 nFillByte = static_cast<sal_uInt8>( -(nFillByte & 1) ); // 0x00 or 0xFF in ImplFastEraseBitmap()
959 nFillByte = rColor.GetIndex(); in ImplFastEraseBitmap()
960 nFillByte &= 0x0F; in ImplFastEraseBitmap()
961 nFillByte |= (nFillByte << 4); in ImplFastEraseBitmap()
965 nFillByte = rColor.GetIndex(); in ImplFastEraseBitmap()
971 nFillByte = rColor.GetRed(); in ImplFastEraseBitmap()
972 if( (nFillByte != rColor.GetGreen()) in ImplFastEraseBitmap()
973 || (nFillByte != rColor.GetBlue()) ) in ImplFastEraseBitmap()
979 nFillByte = 0x00; in ImplFastEraseBitmap()
986 rtl_fillMemory( rDst.mpBits, nByteCount, nFillByte ); in ImplFastEraseBitmap()