Lines Matching refs:pAcc

1384 		BitmapReadAccess*	pAcc = AcquireReadAccess();  in ImplScaleSuper()  local
1385 long nW = pAcc->Width() ; in ImplScaleSuper()
1386 long nH = pAcc->Height() ; in ImplScaleSuper()
1402 if( pAcc && pWAcc ) in ImplScaleSuper()
1429 if( pAcc->HasPalette() ) in ImplScaleSuper()
1431 if( pAcc->GetScanlineFormat() == BMP_FORMAT_8BIT_PAL ) in ImplScaleSuper()
1440 pLine0 = pAcc->GetScanline( nTempY ); in ImplScaleSuper()
1441 pLine1 = pAcc->GetScanline( ++nTempY ); in ImplScaleSuper()
1447 const BitmapColor& rCol0 = pAcc->GetPaletteColor( pLine0[ nTempX ] ); in ImplScaleSuper()
1448 const BitmapColor& rCol2 = pAcc->GetPaletteColor( pLine1[ nTempX ] ); in ImplScaleSuper()
1449 const BitmapColor& rCol1 = pAcc->GetPaletteColor( pLine0[ ++nTempX ] ); in ImplScaleSuper()
1450 const BitmapColor& rCol3 = pAcc->GetPaletteColor( pLine1[ nTempX ] ); in ImplScaleSuper()
1511 pTmpY = pAcc->GetScanline( nLineStart + i ); in ImplScaleSuper()
1517 const BitmapColor& rCol = pAcc->GetPaletteColor( pTmpY[ nRowStart + j ] ); in ImplScaleSuper()
1589 aCol0 = pAcc->GetPaletteColor( pAcc->GetPixelIndex( nTempY, nTempX ) ); in ImplScaleSuper()
1590 aCol1 = pAcc->GetPaletteColor( pAcc->GetPixelIndex( nTempY, ++nTempX ) ); in ImplScaleSuper()
1595 aCol1 = pAcc->GetPaletteColor( pAcc->GetPixelIndex( ++nTempY, nTempX ) ); in ImplScaleSuper()
1596 aCol0 = pAcc->GetPaletteColor( pAcc->GetPixelIndex( nTempY--, --nTempX ) ); in ImplScaleSuper()
1657 aCol0 = pAcc->GetPaletteColor ( pAcc->GetPixelIndex( nLineStart + i, nRowStart + j ) ); in ImplScaleSuper()
1723 if( pAcc->GetScanlineFormat() == BMP_FORMAT_24BIT_TC_BGR ) in ImplScaleSuper()
1733 pLine0 = pAcc->GetScanline( nTempY ); in ImplScaleSuper()
1734 pLine1 = pAcc->GetScanline( ++nTempY ); in ImplScaleSuper()
1802 pTmpY = pAcc->GetScanline( nLineStart + i ); in ImplScaleSuper()
1867 else if( pAcc->GetScanlineFormat() == BMP_FORMAT_24BIT_TC_RGB ) in ImplScaleSuper()
1877 pLine0 = pAcc->GetScanline( nTempY ); in ImplScaleSuper()
1878 pLine1 = pAcc->GetScanline( ++nTempY ); in ImplScaleSuper()
1946 pTmpY = pAcc->GetScanline( nLineStart + i ); in ImplScaleSuper()
2023 aCol0 = pAcc->GetPixel( nTempY, nTempX ); in ImplScaleSuper()
2024 aCol1 = pAcc->GetPixel( nTempY, ++nTempX ); in ImplScaleSuper()
2029 aCol1 = pAcc->GetPixel( ++nTempY, nTempX ); in ImplScaleSuper()
2030 aCol0 = pAcc->GetPixel( nTempY--, --nTempX ); in ImplScaleSuper()
2090 aCol0 = pAcc->GetPixel( nLineStart + i, nRowStart + j ); in ImplScaleSuper()
2163 ReleaseAccess( pAcc ); in ImplScaleSuper()
3373 BitmapWriteAccess* pAcc = AcquireWriteAccess(); in Adjust() local
3375 if( pAcc ) in Adjust()
3378 const long nW = pAcc->Width(); in Adjust()
3379 const long nH = pAcc->Height(); in Adjust()
3427 if( pAcc->HasPalette() ) in Adjust()
3431 for( sal_uInt16 i = 0, nCount = pAcc->GetPaletteEntryCount(); i < nCount; i++ ) in Adjust()
3433 const BitmapColor& rCol = pAcc->GetPaletteColor( i ); in Adjust()
3437 pAcc->SetPaletteColor( i, aNewCol ); in Adjust()
3440 else if( pAcc->GetScanlineFormat() == BMP_FORMAT_24BIT_TC_BGR ) in Adjust()
3444 Scanline pScan = pAcc->GetScanline( nY ); in Adjust()
3454 else if( pAcc->GetScanlineFormat() == BMP_FORMAT_24BIT_TC_RGB ) in Adjust()
3458 Scanline pScan = pAcc->GetScanline( nY ); in Adjust()
3474 aCol = pAcc->GetPixel( nY, nX ); in Adjust()
3478 pAcc->SetPixel( nY, nX, aCol ); in Adjust()
3486 ReleaseAccess( pAcc ); in Adjust()