Lines Matching refs:aSize

103                     const basegfx::B2IVector aSize(mpBitmap->getSize());  in getFastPropertyValue()  local
105 aSize.getX(), in getFastPropertyValue()
106 aSize.getY() ); in getFastPropertyValue()
113 aBIH.biWidth = aSize.getX(); in getFastPropertyValue()
114 aBIH.biHeight = -aSize.getY(); in getFastPropertyValue()
127 aBmpData.Width = aSize.getX(); in getFastPropertyValue()
128 aBmpData.Height = aSize.getY(); in getFastPropertyValue()
132 const Gdiplus::Rect aRect( 0,0,aSize.getX(),aSize.getY() ); in getFastPropertyValue()
145 …SetDIBits( hScreenDC, hBmpBitmap, 0, aSize.getY(), aBmpData.Scan0, (PBITMAPINFO)&aBIH, DIB_RGB_COL… in getFastPropertyValue()
183 const basegfx::B2IVector aSize(mpBitmap->getSize()); in getFastPropertyValue() local
184 … HBITMAP hBmpBitmap = CreateCompatibleBitmap( hScreenDC, aSize.getX(), aSize.getY() ); in getFastPropertyValue()
189 aDIB.bmiHeader.biWidth = aSize.getX(); in getFastPropertyValue()
190 aDIB.bmiHeader.biHeight = -aSize.getY(); in getFastPropertyValue()
201 aBmpData.Width = aSize.getX(); in getFastPropertyValue()
202 aBmpData.Height = aSize.getY(); in getFastPropertyValue()
206 const Gdiplus::Rect aRect( 0,0,aSize.getX(),aSize.getY() ); in getFastPropertyValue()
218 const sal_Int32 nScanWidth((aSize.getX() + 3) & ~3); in getFastPropertyValue()
219 … boost::scoped_array<sal_uInt8> pAlphaBits( new sal_uInt8[nScanWidth*aSize.getY()] ); in getFastPropertyValue()
223 for( sal_Int32 y=0; y<aSize.getY(); ++y ) in getFastPropertyValue()
226 for( sal_Int32 x=0; x<aSize.getX(); ++x ) in getFastPropertyValue()
237 aSize.getY(), pAlphaBits.get(), in getFastPropertyValue()