Home
last modified time | relevance | path

Searched refs:nAmount (Results 1 – 1 of 1) sorted by relevance

/external/pdfium/fxjs/
Dcfxjse_formcalc_context.cpp2326 double nAmount = ValueToDouble(pThis, argOne.get()); in FV() local
2329 if ((nRate < 0) || (nPeriod <= 0) || (nAmount <= 0)) { in FV()
2340 dResult = nAmount * (nTemp - 1) / nRate; in FV()
2342 dResult = nAmount * nPeriod; in FV()
2560 double nAmount = ValueToDouble(pThis, argOne.get()); in PV() local
2563 if ((nAmount <= 0) || (nRate < 0) || (nPeriod <= 0)) { in PV()
2573 args.GetReturnValue()->SetDouble(nAmount * ((1 - nTemp) / nRate)); in PV()