Lines Matching refs:erfc
73 // Coefficients for approximation to erfc in [1.251/0.35]
92 // Coefficients for approximation to erfc in [1/.3528]
109 _CLC_OVERLOAD _CLC_DEF float erfc(float x) {
170 _CLC_UNARY_VECTORIZE(_CLC_OVERLOAD _CLC_DEF, float, erfc, float);
188 * double erfc(double x)
195 * erfc(x) = 1-erf(x)
198 * erfc(-x) = 2 - erfc(x)
203 * erfc(x) = 1 - erf(x) if x in [-.84375,0.25]
223 * erfc(x) = (1-c) - P1(s)/Q1(s) if x > 0
237 * erfc(x) = (1/x)*exp(-x*x-0.5625+R1/S1)
238 * erf(x) = 1 - erfc(x)
244 * erfc(x) = (1/x)*exp(-x*x-0.5625+R2/S2) if x > 0
247 * erf(x) = sign(x)*(1.0 - erfc(x)) if x < 6, else
262 * erfc(x) ~ ---------- * ( 1 + Poly(1/x^2) )
265 * g(s)=f(1/x^2) = log(erfc(x)*x) - x*x + 0.5625
272 * erfc(x) = tiny*tiny (raise underflow) if x > 0
277 * erfc(0) = 1, erfc(inf) = 0, erfc(-inf) = 2,
278 * erfc/erf(NaN) is NaN
342 _CLC_OVERLOAD _CLC_DEF double erfc(double x) {
411 _CLC_UNARY_VECTORIZE(_CLC_OVERLOAD _CLC_DEF, double, erfc, double);