Lines Matching refs:fTmp
528 double fTmp; in ImplCreateOutput() local
546 fTmp = nX * fRevScaleX; in ImplCreateOutput()
549 fTmp = nTmpX - fTmp; in ImplCreateOutput()
551 … pMapFX[ nX ] = (long) ( ( fTmp - ( pMapIX[ nX ] = MinMax( (long) fTmp, 0, nTmp ) ) ) * 1048576. ); in ImplCreateOutput()
557 fTmp = nY * fRevScaleY; in ImplCreateOutput()
560 fTmp = nTmpY - fTmp; in ImplCreateOutput()
562 … pMapFY[ nY ] = (long) ( ( fTmp - ( pMapIY[ nY ] = MinMax( (long) fTmp, 0, nTmp ) ) ) * 1048576. ); in ImplCreateOutput()
574 fTmp = nX * fRevScaleX; in ImplCreateOutput()
577 fTmp = nTmpX - fTmp; in ImplCreateOutput()
580 pMapIX[ nX ] = MinMax( (long) fTmp, 0, nTmp ); in ImplCreateOutput()
581 pMapFX[ nX ] = fTmp >= nTmp+1 ? 1048576 : 0; in ImplCreateOutput()
587 fTmp = nY * fRevScaleY; in ImplCreateOutput()
590 fTmp = nTmpY - fTmp; in ImplCreateOutput()
593 pMapIY[ nY ] = MinMax( (long) fTmp, 0, nTmp ); in ImplCreateOutput()
594 pMapFY[ nY ] = fTmp >= nTmp+1 ? 1048576 : 0; in ImplCreateOutput()
1434 double fTmp; in ImplCreateRotatedScaled() local
1450 pCosX[ nX ] = FRound( fCosAngle * ( fTmp = nTmpX++ << 8 ) ); in ImplCreateRotatedScaled()
1451 pSinX[ nX ] = FRound( fSinAngle * fTmp ); in ImplCreateRotatedScaled()
1457 pCosY[ nY ] = FRound( fCosAngle * ( fTmp = nTmpY++ << 8 ) ); in ImplCreateRotatedScaled()
1458 pSinY[ nY ] = FRound( fSinAngle * fTmp ); in ImplCreateRotatedScaled()