Lines Matching refs:fCost
892 double GetAmordegrc( sal_Int32 nNullDate, double fCost, sal_Int32 nDate, sal_Int32 nFirstPer, in GetAmordegrc() argument
912 …NRate = ::rtl::math::round( GetYearFrac( nNullDate, nDate, nFirstPer, nBase ) * fRate * fCost, 0 ); in GetAmordegrc()
913 fCost -= fNRate; in GetAmordegrc()
914 double fRest = fCost - fRestVal; // Anschaffungskosten - Restwert - Summe aller Abschreibungen in GetAmordegrc()
918 fNRate = ::rtl::math::round( fRate * fCost, 0 ); in GetAmordegrc()
927 return ::rtl::math::round( fCost * 0.5, 0 ); in GetAmordegrc()
933 fCost -= fNRate; in GetAmordegrc()
940 double GetAmorlinc( sal_Int32 nNullDate, double fCost, sal_Int32 nDate, sal_Int32 nFirstPer, in GetAmorlinc() argument
947 double fOneRate = fCost * fRate; in GetAmorlinc()
948 double fCostDelta = fCost - fRestVal; in GetAmorlinc()
949 double f0Rate = GetYearFrac( nNullDate, nDate, nFirstPer, nBase ) * fRate * fCost; in GetAmorlinc()
950 sal_uInt32 nNumOfFullPeriods = sal_uInt32( ( fCost - fRestVal - f0Rate) / fOneRate ); in GetAmorlinc()