Lines Matching refs:fVal

58     double      fVal = aAnyConv.getDouble( xOpt, rVal, 1000.0 );  in getAccrint()  local
60 if( fRate <= 0.0 || fVal <= 0.0 || CHK_Freq || nIssue >= nSettle ) in getAccrint()
63 …double fRet = fVal * fRate * GetYearDiff( GetNullDate( xOpt ), nIssue, nSettle, getDateMode( xOpt,… in getAccrint()
71 double fVal = aAnyConv.getDouble( xOpt, rVal, 1000.0 ); in getAccrintm() local
73 if( fRate <= 0.0 || fVal <= 0.0 || nIssue >= nSettle ) in getAccrintm()
76 …double fRet = fVal * fRate * GetYearDiff( GetNullDate( xOpt ), nIssue, nSettle, getDateMode( xOpt,… in getAccrintm()
126 double SAL_CALL AnalysisAddIn::getCumprinc( double fRate, sal_Int32 nNumPeriods, double fVal, in getCumprinc() argument
132 fVal <= 0.0 || ( nPayType != 0 && nPayType != 1 ) ) in getCumprinc()
135 fRmz = GetRmz( fRate, nNumPeriods, fVal, 0.0, nPayType ); in getCumprinc()
145 fKapZ = fRmz + fVal * fRate; in getCumprinc()
155 fKapZ += fRmz - ( GetZw( fRate, double( i - 2 ), fRmz, fVal, 1 ) - fRmz ) * fRate; in getCumprinc()
157 fKapZ += fRmz - GetZw( fRate, double( i - 1 ), fRmz, fVal, 0 ) * fRate; in getCumprinc()
164 double SAL_CALL AnalysisAddIn::getCumipmt( double fRate, sal_Int32 nNumPeriods, double fVal, in getCumipmt() argument
170 fVal <= 0.0 || ( nPayType != 0 && nPayType != 1 ) ) in getCumipmt()
173 fRmz = GetRmz( fRate, nNumPeriods, fVal, 0.0, nPayType ); in getCumipmt()
183 fZinsZ = -fVal; in getCumipmt()
191 fZinsZ += GetZw( fRate, double( i - 2 ), fRmz, fVal, 1 ) - fRmz; in getCumipmt()
193 fZinsZ += GetZw( fRate, double( i - 1 ), fRmz, fVal, 0 ); in getCumipmt()