Lines Matching refs:aCol

2578 					const BitmapColor	aCol( pReadAcc->GetPaletteColor( pReadAcc->GetPixelIndex( nY, nX ) ) );  in ImplDitherMatrix()  local
2580 const sal_uLong nR = ( nVCLLut[ aCol.GetRed() ] + nD ) >> 16UL; in ImplDitherMatrix()
2581 const sal_uLong nG = ( nVCLLut[ aCol.GetGreen() ] + nD ) >> 16UL; in ImplDitherMatrix()
2582 const sal_uLong nB = ( nVCLLut[ aCol.GetBlue() ] + nD ) >> 16UL; in ImplDitherMatrix()
2595 const BitmapColor aCol( pReadAcc->GetPixel( nY, nX ) ); in ImplDitherMatrix() local
2597 const sal_uLong nR = ( nVCLLut[ aCol.GetRed() ] + nD ) >> 16UL; in ImplDitherMatrix()
2598 const sal_uLong nG = ( nVCLLut[ aCol.GetGreen() ] + nD ) >> 16UL; in ImplDitherMatrix()
2599 const sal_uLong nB = ( nVCLLut[ aCol.GetBlue() ] + nD ) >> 16UL; in ImplDitherMatrix()
3033 const BitmapColor aCol( pRAcc->GetPixel( nY, nX ) ); in ImplReducePopular() local
3034 pCountTable[ ( ( ( (sal_uInt32) aCol.GetRed() ) >> nRightShiftBits ) << nLeftShiftBits2 ) | in ImplReducePopular()
3035 ( ( ( (sal_uInt32) aCol.GetGreen() ) >> nRightShiftBits ) << nLeftShiftBits1 ) | in ImplReducePopular()
3036 ( ( (sal_uInt32) aCol.GetBlue() ) >> nRightShiftBits ) ].mnCount++; in ImplReducePopular()
3086 const BitmapColor aCol( pRAcc->GetPixel( nY, nX ) ); in ImplReducePopular() local
3087 …aDstCol.SetIndex( pIndexMap[ ( ( ( (sal_uInt32) aCol.GetRed() ) >> nRightShiftBits ) << nLeftShift… in ImplReducePopular()
3088 ( ( ( (sal_uInt32) aCol.GetGreen() ) >> nRightShiftBits ) << nLeftShiftBits1 ) | in ImplReducePopular()
3089 ( ( (sal_uInt32) aCol.GetBlue() ) >> nRightShiftBits ) ] ); in ImplReducePopular()
3169 const BitmapColor aCol( pRAcc->GetPixel( nY, nX ) ); in ImplReduceMedian() local
3170 pColBuf[ RGB15( aCol.GetRed() >> 3, aCol.GetGreen() >> 3, aCol.GetBlue() >> 3 ) ]++; in ImplReduceMedian()
3217 BitmapColor aCol; in ImplMedianCut() local
3228 aCol.SetRed( (sal_uInt8) ( nR1 << 3 ) ); in ImplMedianCut()
3229 aCol.SetGreen( (sal_uInt8) ( nG1 << 3 ) ); in ImplMedianCut()
3230 aCol.SetBlue( (sal_uInt8) ( nB1 << 3 ) ); in ImplMedianCut()
3231 rPal[ (sal_uInt16) rIndex++ ] = aCol; in ImplMedianCut()
3258 aCol.SetRed( (sal_uInt8) ( ( nRSum / nPixels ) << 3 ) ); in ImplMedianCut()
3259 aCol.SetGreen( (sal_uInt8) ( ( nGSum / nPixels ) << 3 ) ); in ImplMedianCut()
3260 aCol.SetBlue( (sal_uInt8) ( ( nBSum / nPixels ) << 3 ) ); in ImplMedianCut()
3261 rPal[ (sal_uInt16) rIndex++ ] = aCol; in ImplMedianCut()
3377 BitmapColor aCol; in Adjust() local
3474 aCol = pAcc->GetPixel( nY, nX ); in Adjust()
3475 aCol.SetRed( cMapR[ aCol.GetRed() ] ); in Adjust()
3476 aCol.SetGreen( cMapG[ aCol.GetGreen() ] ); in Adjust()
3477 aCol.SetBlue( cMapB[ aCol.GetBlue() ] ); in Adjust()
3478 pAcc->SetPixel( nY, nX, aCol ); in Adjust()