Lines Matching refs:nTemp

46 						nTemp   = p1T[nX++] >> 12;								\
47 nBErr = MinMax( nTemp, 0, 255 ); \
49 nTemp = p1T[nX++] >> 12; \
50 nGErr = MinMax( nTemp, 0, 255 ); \
52 nTemp = p1T[nX] >> 12; \
53 nRErr = MinMax( nTemp, 0, 255 ); \
1199 long nTemp; in ImplScaleInterpolate() local
1210 for( nX = 0L, nTemp = nWidth - 2L; nX < nNewWidth; nX++ ) in ImplScaleInterpolate()
1213 pLutInt[ nX ] = MinMax( (long) fTemp, 0, nTemp ); in ImplScaleInterpolate()
1240 nTemp = pLutInt[ nX ]; in ImplScaleInterpolate()
1244 aCol0 = pReadAcc->GetPaletteColor( pReadAcc->GetPixelIndex( nY, nTemp++ ) ); in ImplScaleInterpolate()
1245 aCol1 = pReadAcc->GetPaletteColor( pReadAcc->GetPixelIndex( nY, nTemp ) ); in ImplScaleInterpolate()
1249 aCol0 = pReadAcc->GetPixel( nY, nTemp++ ); in ImplScaleInterpolate()
1250 aCol1 = pReadAcc->GetPixel( nY, nTemp ); in ImplScaleInterpolate()
1253 nTemp = pLutFrac[ nX ]; in ImplScaleInterpolate()
1259 aCol0.SetRed( (sal_uInt8) ( ( lXR1 * nTemp + ( lXR0 << 10 ) ) >> 10 ) ); in ImplScaleInterpolate()
1260 aCol0.SetGreen( (sal_uInt8) ( ( lXG1 * nTemp + ( lXG0 << 10 ) ) >> 10 ) ); in ImplScaleInterpolate()
1261 aCol0.SetBlue( (sal_uInt8) ( ( lXB1 * nTemp + ( lXB0 << 10 ) ) >> 10 ) ); in ImplScaleInterpolate()
1294 for( nY = 0L, nTemp = nHeight - 2L; nY < nNewHeight; nY++ ) in ImplScaleInterpolate()
1297 pLutInt[ nY ] = MinMax( (long) fTemp, 0, nTemp ); in ImplScaleInterpolate()
1320 nTemp = pLutInt[ nY ]; in ImplScaleInterpolate()
1322 aCol0 = pReadAcc->GetPixel( nTemp++, nX ); in ImplScaleInterpolate()
1323 aCol1 = pReadAcc->GetPixel( nTemp, nX ); in ImplScaleInterpolate()
1325 nTemp = pLutFrac[ nY ]; in ImplScaleInterpolate()
1331 aCol0.SetRed( (sal_uInt8) ( ( lXR1 * nTemp + ( lXR0 << 10 ) ) >> 10 ) ); in ImplScaleInterpolate()
1332 aCol0.SetGreen( (sal_uInt8) ( ( lXG1 * nTemp + ( lXG0 << 10 ) ) >> 10 ) ); in ImplScaleInterpolate()
1333 aCol0.SetBlue( (sal_uInt8) ( ( lXB1 * nTemp + ( lXB0 << 10 ) ) >> 10 ) ); in ImplScaleInterpolate()
1395 long nTemp , nTempX, nTempY, nTempFX, nTempFY; in ImplScaleSuper() local
1408 for( nX = 0L, nTempX = nW - 1L, nTemp = nW - 2L; nX < nDstW; nX++ ) in ImplScaleSuper()
1415 … pMapFX[ nX ] = (long) ( ( fTemp - ( pMapIX[ nX ] = MinMax( (long) fTemp, 0, nTemp ) ) ) * 128. ); in ImplScaleSuper()
1419 for( nY = 0L, nTempY = nH - 1L, nTemp = nH - 2L; nY < nDstH; nY++ ) in ImplScaleSuper()
1426 … pMapFY[ nY ] = (long) ( ( fTemp - ( pMapIY[ nY ] = MinMax( (long) fTemp, 0, nTemp ) ) ) * 128. ); in ImplScaleSuper()
2651 long nTemp; in ImplDitherFloyd() local