Lines Matching refs:rInt
2020 ScInterpreter& rInt; member in ScGammaDistFunction
2025 rInt(rI), fp(fpVal), fAlpha(fAlphaVal), fBeta(fBetaVal) {} in ScGammaDistFunction()
2027 double GetValue( double x ) const { return fp - rInt.GetGammaDist(x, fAlpha, fBeta); } in GetValue()
2059 ScInterpreter& rInt; member in ScBetaDistFunction
2064 rInt(rI), fp(fpVal), fAlpha(fAlphaVal), fBeta(fBetaVal) {} in ScBetaDistFunction()
2066 double GetValue( double x ) const { return fp - rInt.GetBetaDist(x, fAlpha, fBeta); } in GetValue()
2113 ScInterpreter& rInt; member in ScTDistFunction
2118 rInt(rI), fp(fpVal), fDF(fDFVal) {} in ScTDistFunction()
2120 double GetValue( double x ) const { return fp - 2 * rInt.GetTDist(x, fDF); } in GetValue()
2146 ScInterpreter& rInt; member in ScFDistFunction
2151 rInt(rI), fp(fpVal), fF1(fF1Val), fF2(fF2Val) {} in ScFDistFunction()
2153 double GetValue( double x ) const { return fp - rInt.GetFDist(x, fF1, fF2); } in GetValue()
2180 ScInterpreter& rInt; member in ScChiDistFunction
2185 rInt(rI), fp(fpVal), fDF(fDFVal) {} in ScChiDistFunction()
2187 double GetValue( double x ) const { return fp - rInt.GetChiDist(x, fDF); } in GetValue()
2214 ScInterpreter& rInt; member in ScChiSqDistFunction
2219 rInt(rI), fp(fpVal), fDF(fDFVal) {} in ScChiSqDistFunction()
2221 double GetValue( double x ) const { return fp - rInt.GetChiSqDistCDF(x, fDF); } in GetValue()