Lines Matching refs:nNewHeight

1111 	const long	nNewHeight = FRound( aSizePix.Height() * rScaleY );  in ImplScaleFast()  local
1114 if( nNewWidth && nNewHeight ) in ImplScaleFast()
1120 Bitmap aNewBmp( Size( nNewWidth, nNewHeight ), GetBitCount(), &pReadAcc->GetPalette() ); in ImplScaleFast()
1127 const long nNewHeight1 = nNewHeight - 1L; in ImplScaleFast()
1131 long* pLutY = new long[ nNewHeight ]; in ImplScaleFast()
1139 for( nY = 0L; nY < nNewHeight; nY++ ) in ImplScaleFast()
1140 pLutY[ nY ] = nY * nHeight / nNewHeight; in ImplScaleFast()
1142 while( nActY < nNewHeight ) in ImplScaleFast()
1182 const long nNewHeight = FRound( aSizePix.Height() * rScaleY ); in ImplScaleInterpolate() local
1185 if( ( nNewWidth > 1L ) && ( nNewHeight > 1L ) ) in ImplScaleInterpolate()
1281 aNewBmp = Bitmap( Size( nNewWidth, nNewHeight ), 24 ); in ImplScaleInterpolate()
1287 const long nNewHeight1 = nNewHeight - 1L; in ImplScaleInterpolate()
1291 pLutInt = new long[ nNewHeight ]; in ImplScaleInterpolate()
1292 pLutFrac = new long[ nNewHeight ]; in ImplScaleInterpolate()
1294 for( nY = 0L, nTemp = nHeight - 2L; nY < nNewHeight; nY++ ) in ImplScaleInterpolate()
1311 for( nY = 0L; nY < nNewHeight; nY++ ) in ImplScaleInterpolate()
1318 for( nY = 0L; nY < nNewHeight; nY++ ) in ImplScaleInterpolate()
2335 const sal_uInt32 nNewHeight(FRound(nHeight * rScaleY)); in ImplScaleConvolutionVer() local
2337 if(nHeight == nNewHeight) in ImplScaleConvolutionVer()
2352 …ImplCalculateContributions(nHeight, nNewHeight, aNumberOfContributions, pWeights, pPixels, pCount,… in ImplScaleConvolutionVer()
2353 rTarget = Bitmap(Size(nWidth, nNewHeight), 24); in ImplScaleConvolutionVer()
2361 for(sal_uInt32 y(0); y < nNewHeight; y++) in ImplScaleConvolutionVer()
2440 const sal_uInt32 nNewHeight(FRound(nHeight * fScaleY)); in ImplScaleConvolution() local
2442 const bool bScaleVer(nHeight != nNewHeight); in ImplScaleConvolution()
2467 const sal_uInt32 nEndSize(nNewWidth * nNewHeight); in ImplScaleConvolution()
2482 const sal_uInt32 nInBetweenSizeVerFirst(nNewHeight * nWidth); in ImplScaleConvolution()