Searched refs:rByte (Results 1 – 3 of 3) sorted by relevance
42 sal_uInt8& rByte = pScanline[ nX >> 3 ]; in IMPL_FORMAT_SETPIXEL_NOMASK() local45 ( rByte &= ~( 1 << ( 7 - ( nX & 7 ) ) ) ); in IMPL_FORMAT_SETPIXEL_NOMASK()59 sal_uInt8& rByte = pScanline[ nX >> 3 ]; in IMPL_FORMAT_SETPIXEL_NOMASK() local61 ( rBitmapColor.GetIndex() & 1 ) ? ( rByte |= 1 << ( nX & 7 ) ) : in IMPL_FORMAT_SETPIXEL_NOMASK()62 ( rByte &= ~( 1 << ( nX & 7 ) ) ); in IMPL_FORMAT_SETPIXEL_NOMASK()76 sal_uInt8& rByte = pScanline[ nX >> 1 ]; in IMPL_FORMAT_SETPIXEL_NOMASK() local78 ( nX & 1 ) ? ( rByte &= 0xf0, rByte |= ( rBitmapColor.GetIndex() & 0x0f ) ) : in IMPL_FORMAT_SETPIXEL_NOMASK()79 ( rByte &= 0x0f, rByte |= ( rBitmapColor.GetIndex() << 4 ) ); in IMPL_FORMAT_SETPIXEL_NOMASK()93 sal_uInt8& rByte = pScanline[ nX >> 1 ]; in IMPL_FORMAT_SETPIXEL_NOMASK() local95 ( nX & 1 ) ? ( rByte &= 0x0f, rByte |= ( rBitmapColor.GetIndex() << 4 ) ) : in IMPL_FORMAT_SETPIXEL_NOMASK()[all …]
46 PM_BYTE rByte = pScanline[ nX >> 1 ]; in ImplSetPixel4() local48 ( nX & 1 ) ? ( rByte &= 0xf0, rByte |= ( cIndex & 0x0f ) ) : in ImplSetPixel4()49 ( rByte &= 0x0f, rByte |= ( cIndex << 4 ) ); in ImplSetPixel4()
51 BYTE& rByte = pScanline[ nX >> 1 ]; in ImplSetPixel4() local53 ( nX & 1 ) ? ( rByte &= 0xf0, rByte |= ( cIndex & 0x0f ) ) : in ImplSetPixel4()54 ( rByte &= 0x0f, rByte |= ( cIndex << 4 ) ); in ImplSetPixel4()
Completed in 40 milliseconds