Lines Matching refs:rSize
581 bool WinSalBitmap::Create( const Size& rSize, sal_uInt16 nBitCount, const BitmapPalette& rPal ) in Create() argument
585 mhDIB = ImplCreateDIB( rSize, nBitCount, rPal ); in Create()
589 maSize = rSize; in Create()
756 HGLOBAL WinSalBitmap::ImplCreateDIB( const Size& rSize, sal_uInt16 nBits, const BitmapPalette& rPal… in ImplCreateDIB() argument
762 if( rSize.Width() <= 0 || rSize.Height() <= 0 ) in ImplCreateDIB()
766 const sal_uLong nAlignedWidth4Bytes = AlignedWidth4Bytes( nBits * rSize.Width() ); in ImplCreateDIB()
767 const sal_uLong nImageSize = nAlignedWidth4Bytes * rSize.Height(); in ImplCreateDIB()
768 bool bOverflow = (nImageSize / nAlignedWidth4Bytes) != rSize.Height(); in ImplCreateDIB()
787 pBIH->biWidth = rSize.Width(); in ImplCreateDIB()
788 pBIH->biHeight = rSize.Height(); in ImplCreateDIB()
1083 const Size& rSize = GetSize (); in GetSystemData() local
1084 rData.mnWidth = rSize.Width(); in GetSystemData()
1085 rData.mnHeight = rSize.Height(); in GetSystemData()