Home
last modified time | relevance | path

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

/external/pdfium/fxjs/
Dcfxjse_formcalc_context.cpp2242 double nPrincipal = ValueToDouble(pThis, argOne.get()); in Apr() local
2245 if (nPrincipal <= 0 || nPayment <= 0 || nPeriods <= 0) { in Apr()
2250 double r = 2 * (nPeriods * nPayment - nPrincipal) / (nPeriods * nPrincipal); in Apr()
2255 double nRet = r * nTemp / (nTemp - 1) - nPayment / nPrincipal; in Apr()
2271 nRet = r * nTemp / (nTemp - 1) - nPayment / nPrincipal; in Apr()
2467 float nPrincipal = ValueToFloat(pThis, argOne.get()); in Pmt() local
2470 if ((nPrincipal <= 0) || (nRate <= 0) || (nPeriods <= 0)) { in Pmt()
2480 args.GetReturnValue()->SetFloat((nPrincipal * nRate * nSum) / (nSum - 1)); in Pmt()