Lines Matching refs:fResult
808 double fResult; in ScGamma() local
813 fResult = GetGamma(x); in ScGamma()
819 PushDouble(fResult); in ScGamma()
860 double fResult = exp(-fA * ::boost::math::log1p(fTempA) in GetBeta() local
862 fResult *= fLanczos; in GetBeta()
863 return fResult; in GetBeta()
889 double fResult = -fA * ::boost::math::log1p(fTempA) in GetLogBeta() local
891 fResult += fLogLanczos; in GetLogBeta()
892 return fResult; in GetLogBeta()
1033 double fResult; in GetBetaDist() local
1052 fResult = lcl_GetBetaHelperContFrac(fX,fA,fB); in GetBetaDist()
1053 fResult = fResult/fA; in GetBetaDist()
1061 fResult *= fTemp; in GetBetaDist()
1063 fResult = 0.5 - fResult + 0.5; in GetBetaDist()
1064 if (fResult > 1.0) // ensure valid range in GetBetaDist()
1065 fResult = 1.0; in GetBetaDist()
1066 if (fResult < 0.0) in GetBetaDist()
1067 fResult = 0.0; in GetBetaDist()
1068 return fResult; in GetBetaDist()
1609 double fResult; in ScChiDist() local
1619 fResult = GetChiDist( fChi, fDF); in ScChiDist()
1625 PushDouble(fResult); in ScChiDist()