Lines Matching refs:nNewWidth

1110 	const long	nNewWidth = FRound( aSizePix.Width() * rScaleX );  in ImplScaleFast()  local
1114 if( nNewWidth && nNewHeight ) in ImplScaleFast()
1120 Bitmap aNewBmp( Size( nNewWidth, nNewHeight ), GetBitCount(), &pReadAcc->GetPalette() ); in ImplScaleFast()
1126 const long nNewWidth1 = nNewWidth - 1L; in ImplScaleFast()
1130 long* pLutX = new long[ nNewWidth ]; in ImplScaleFast()
1136 for( nX = 0L; nX < nNewWidth; nX++ ) in ImplScaleFast()
1137 pLutX[ nX ] = nX * nWidth / nNewWidth; in ImplScaleFast()
1146 for( nX = 0L; nX < nNewWidth; nX++ ) in ImplScaleFast()
1181 const long nNewWidth = FRound( aSizePix.Width() * rScaleX ); in ImplScaleInterpolate() local
1185 if( ( nNewWidth > 1L ) && ( nNewHeight > 1L ) ) in ImplScaleInterpolate()
1192 Bitmap aNewBmp( Size( nNewWidth, nHeight ), 24 ); in ImplScaleInterpolate()
1203 const long nNewWidth1 = nNewWidth - 1L; in ImplScaleInterpolate()
1207 pLutInt = new long[ nNewWidth ]; in ImplScaleInterpolate()
1208 pLutFrac = new long[ nNewWidth ]; in ImplScaleInterpolate()
1210 for( nX = 0L, nTemp = nWidth - 2L; nX < nNewWidth; nX++ ) in ImplScaleInterpolate()
1231 for( nX = 0L; nX < nNewWidth; nX++ ) in ImplScaleInterpolate()
1238 for( nX = 0L; nX < nNewWidth; nX++ ) in ImplScaleInterpolate()
1281 aNewBmp = Bitmap( Size( nNewWidth, nNewHeight ), 24 ); in ImplScaleInterpolate()
1305 for( nX = 0L; nX < nNewWidth; nX++ ) in ImplScaleInterpolate()
2244 const sal_uInt32 nNewWidth(FRound(nWidth * rScaleX)); in ImplScaleConvolutionHor() local
2246 if(nWidth == nNewWidth) in ImplScaleConvolutionHor()
2261 …ImplCalculateContributions(nWidth, nNewWidth, aNumberOfContributions, pWeights, pPixels, pCount, a… in ImplScaleConvolutionHor()
2262 rTarget = Bitmap(Size(nNewWidth, nHeight), 24); in ImplScaleConvolutionHor()
2270 for(sal_uInt32 x(0); x < nNewWidth; x++) in ImplScaleConvolutionHor()
2439 const sal_uInt32 nNewWidth(FRound(nWidth * fScaleX)); in ImplScaleConvolution() local
2441 const bool bScaleHor(nWidth != nNewWidth); in ImplScaleConvolution()
2467 const sal_uInt32 nEndSize(nNewWidth * nNewHeight); in ImplScaleConvolution()
2481 const sal_uInt32 nInBetweenSizeHorFirst(nHeight * nNewWidth); in ImplScaleConvolution()