Lines Matching refs:pAcc

889 	BitmapReadAccess*	pAcc = NULL;  in WriteOpcode_BitsRect()  local
907 if ( ( pAcc = aBitmap.AcquireReadAccess() ) == NULL ) in WriteOpcode_BitsRect()
916 nWidth = pAcc->Width(); in WriteOpcode_BitsRect()
917 nHeight = pAcc->Height(); in WriteOpcode_BitsRect()
981 *pPict << (sal_uInt8)pAcc->GetPixel( ny, 0 ).GetRed(); in WriteOpcode_BitsRect()
982 *pPict << (sal_uInt8)pAcc->GetPixel( ny, 0 ).GetGreen(); in WriteOpcode_BitsRect()
983 *pPict << (sal_uInt8)pAcc->GetPixel( ny, 0 ).GetBlue(); in WriteOpcode_BitsRect()
1002 pComp[ 1 ][ nx ] = (sal_uInt8)pAcc->GetPixel( ny, nx ) .GetRed(); in WriteOpcode_BitsRect()
1003 pComp[ 2 ][ nx ] = (sal_uInt8)pAcc->GetPixel( ny, nx ) .GetGreen(); in WriteOpcode_BitsRect()
1004 pComp[ 3 ][ nx ] = (sal_uInt8)pAcc->GetPixel( ny, nx ) .GetBlue(); in WriteOpcode_BitsRect()
1101 WriteOpcode_RGBBkCol( pAcc->GetPaletteColor( 0 ) ); in WriteOpcode_BitsRect()
1102 WriteOpcode_RGBFgCol( pAcc->GetPaletteColor( 1 ) ); in WriteOpcode_BitsRect()
1147 nColTabSize = pAcc->GetPaletteEntryCount(); in WriteOpcode_BitsRect()
1152 nRed = (sal_uInt8)pAcc->GetPaletteColor( (sal_uInt16)i ).GetRed(); in WriteOpcode_BitsRect()
1153 nGreen = (sal_uInt8)pAcc->GetPaletteColor( (sal_uInt16)i ).GetGreen(); in WriteOpcode_BitsRect()
1154 nBlue = (sal_uInt8)pAcc->GetPaletteColor( (sal_uInt16)i ).GetBlue(); in WriteOpcode_BitsRect()
1186 pPix[ ( i >> 3 ) ] |= (pAcc->GetPixelIndex( ny, i ) & 1) << ((i & 7) ^ 7); in WriteOpcode_BitsRect()
1192 pPix[ ( i >> 1 ) ] |= (pAcc->GetPixelIndex( ny, i ) & 15) << ((i & 1) << 2); in WriteOpcode_BitsRect()
1196 pPix[ i ] = pAcc->GetPixelIndex( ny, i ); in WriteOpcode_BitsRect()
1298 if ( pAcc ) in WriteOpcode_BitsRect()
1299 aBitmap.ReleaseAccess( pAcc ); in WriteOpcode_BitsRect()