Home | History | Annotate | Download | only in src

Lines Matching full:tiny

76  *			= 2.0 - tiny		(if x <= -6)
78 * erf(x) = sign(x)*(1.0 - tiny)
101 * erf(x) = sign(x) *(1 - tiny) (raise inexact)
102 * erfc(x) = tiny*tiny (raise underflow) if x > 0
103 * = 2 - tiny if x<0
116 tiny = 1e-300,
221 if(hx>=0) return one-tiny; else return tiny-one;
288 if(hx<0&&ix>=0x40180000) return two-tiny;/* x < -6 */
300 if(hx>0) return tiny*tiny; else return two-tiny;