Searched refs:pPixel (Results 1 – 4 of 4) sorted by relevance
785 const sal_uInt32 nVal = *pPixel; in GetColorFor8Bit()803 const sal_uInt32 nVal = pPixel[ 1 ] | ( (sal_uInt32) pPixel[ 0 ] << 8UL ); in GetColorFor16BitMSB()828 const sal_uInt32 nVal = pPixel[ 0 ] | ( (sal_uInt32) pPixel[ 1 ] << 8UL ); in GetColorFor16BitLSB()855 …const sal_uInt32 nVal = pPixel[ 0 ] | ( (sal_uInt32) pPixel[ 1 ] << 8UL ) | ( (sal_uInt32) pPixel[… in GetColorFor24Bit()864 …pPixel[ 0 ] = (sal_uInt8) nVal; pPixel[ 1 ] = (sal_uInt8) ( nVal >> 8UL ); pPixel[ 2 ] = (sal_uInt… in SetColorFor24Bit()872 const sal_uInt32 nVal = (sal_uInt32) pPixel[ 0 ] | ( (sal_uInt32) pPixel[ 1 ] << 8UL ) | in GetColorFor32Bit()873 ( (sal_uInt32) pPixel[ 2 ] << 16UL ) | ( (sal_uInt32) pPixel[ 3 ] << 24UL ); in GetColorFor32Bit()886 const sal_uInt32 nVal = (sal_uInt32) pPixel[ 0 ] | ( (sal_uInt32) pPixel[ 1 ] << 8UL ) | in GetColorAndAlphaFor32Bit()887 ( (sal_uInt32) pPixel[ 2 ] << 16UL ) | ( (sal_uInt32) pPixel[ 3 ] << 24UL ); in GetColorAndAlphaFor32Bit()902 pPixel[ 0 ] = (sal_uInt8) nVal; pPixel[ 1 ] = (sal_uInt8) ( nVal >> 8UL ); in SetColorFor32Bit()[all …]
956 pPixel = new sal_uInt16[ nSquares ]; in SvxPixelCtl()957 rtl_zeroMemory(pPixel, nSquares * sizeof(sal_uInt16)); in SvxPixelCtl()969 delete []pPixel; in ~SvxPixelCtl()980 if( *( pPixel + nPixel) == 0 ) in ChangePixel()983 *( pPixel + nPixel) = 0; in ChangePixel()1052 sal_uInt16 nLastPixel = *pPixel ? 0 : 1; in Paint()1064 if ( *( pPixel + i * nLines + j ) != nLastPixel ) in Paint()1066 nLastPixel = *( pPixel + i * nLines + j ); in Paint()1235 *( pPixel + i ) = 0; in SetXBitmap()1239 *( pPixel + i ) = 1; in SetXBitmap()[all …]
193 void SetBmpArray( const sal_uInt16* pPixel ) { pBmpArray = pPixel; } in SetBmpArray() argument215 sal_uInt16* pPixel; member in SvxPixelCtl241 sal_uInt16* GetBitmapPixelPtr() { return pPixel; } in GetBitmapPixelPtr()
211 sal_uInt8* pPixel; in ImplTCToTC() local219 aCol.SetBlue( *( pPixel = ( pSrcScan + pMapX[ nX ] * 3 ) )++ ); in ImplTCToTC()220 aCol.SetGreen( *pPixel++ ); in ImplTCToTC()221 aCol.SetRed( *pPixel ); in ImplTCToTC()
Completed in 36 milliseconds