Lines Matching refs:rScaleX

907 sal_Bool Bitmap::Scale( const double& rScaleX, const double& rScaleY, sal_uInt32 nScaleFlag )  in Scale()  argument
909 if(basegfx::fTools::equalZero(rScaleX) || basegfx::fTools::equalZero(rScaleY)) in Scale()
915 if(basegfx::fTools::equal(rScaleX, 1.0) && basegfx::fTools::equal(rScaleY, 1.0)) in Scale()
965 bRetval = ImplScaleFast( rScaleX, rScaleY ); in Scale()
970 bRetval = ImplScaleInterpolate( rScaleX, rScaleY ); in Scale()
978 bRetval = ImplScaleFast( rScaleX, rScaleY ); in Scale()
983 bRetval = ImplScaleSuper( rScaleX, rScaleY ); in Scale()
991 bRetval = ImplScaleConvolution( rScaleX, rScaleY, kernel); in Scale()
998 bRetval = ImplScaleConvolution( rScaleX, rScaleY, kernel ); in Scale()
1005 bRetval = ImplScaleConvolution( rScaleX, rScaleY, kernel ); in Scale()
1012 bRetval = ImplScaleConvolution( rScaleX, rScaleY, kernel ); in Scale()
1107 sal_Bool Bitmap::ImplScaleFast( const double& rScaleX, const double& rScaleY ) in ImplScaleFast() argument
1110 const long nNewWidth = FRound( aSizePix.Width() * rScaleX ); in ImplScaleFast()
1178 sal_Bool Bitmap::ImplScaleInterpolate( const double& rScaleX, const double& rScaleY ) in ImplScaleInterpolate() argument
1181 const long nNewWidth = FRound( aSizePix.Width() * rScaleX ); in ImplScaleInterpolate()
1358 bRet = ImplScaleFast( rScaleX, rScaleY ); in ImplScaleInterpolate()
1368 const double& rScaleX, in ImplScaleSuper() argument
1372 bool bHMirr = ( rScaleX < 0 ); in ImplScaleSuper()
1374 double scaleX = bHMirr ? -rScaleX : rScaleX; in ImplScaleSuper()
2238 const double& rScaleX, in ImplScaleConvolutionHor() argument
2242 … OSL_ENSURE(rScaleX > 0.0, "Error in scaling: Mirror given in non-mirror-capable method (!)"); in ImplScaleConvolutionHor()
2244 const sal_uInt32 nNewWidth(FRound(nWidth * rScaleX)); in ImplScaleConvolutionHor()
2429 const double& rScaleX, in ImplScaleConvolution() argument
2433 const bool bMirrorHor(rScaleX < 0.0); in ImplScaleConvolution()
2435 const double fScaleX(bMirrorHor ? -rScaleX : rScaleX); in ImplScaleConvolution()