HomeSort by relevance Sort by last modified time
    Searched defs:tiny (Results 26 - 27 of 27) sorted by null

12

  /external/fdlibm/
e_pow.c 76 tiny = 1.0e-300, variable
193 if(ix<=0x3fefffff) return (hy<0)? huge*huge:tiny*tiny;
194 if(ix>=0x3ff00000) return (hy>0)? huge*huge:tiny*tiny;
197 if(ix<0x3fefffff) return (hy<0)? s*huge*huge:s*tiny*tiny;
198 if(ix>0x3ff00000) return (hy>0)? s*huge*huge:s*tiny*tiny;
199 /* now |1-x| is tiny <= 2**-20, suffice to compute
    [all...]
s_erf.c 73 * = 2.0 - tiny (if x <= -6)
75 * erf(x) = sign(x)*(1.0 - tiny)
98 * erf(x) = sign(x) *(1 - tiny) (raise inexact)
99 * erfc(x) = tiny*tiny (raise underflow) if x > 0
100 * = 2 - tiny if x<0
116 tiny = 1e-300, variable
225 if(hx>=0) return one-tiny; else return tiny-one;
296 if(hx<0&&ix>=0x40180000) return two-tiny;/* x < -6 *
    [all...]

Completed in 32 milliseconds

12