/bionic/libm/upstream-freebsd/lib/msun/src/ |
D | e_pow.c | 75 huge = 1.0e300, variable 195 if(ix<=0x3fefffff) return (hy<0)? huge*huge:tiny*tiny; in __ieee754_pow() 196 if(ix>=0x3ff00000) return (hy>0)? huge*huge:tiny*tiny; in __ieee754_pow() 199 if(ix<0x3fefffff) return (hy<0)? s*huge*huge:s*tiny*tiny; in __ieee754_pow() 200 if(ix>0x3ff00000) return (hy>0)? s*huge*huge:s*tiny*tiny; in __ieee754_pow() 269 return s*huge*huge; /* overflow */ in __ieee754_pow() 271 if(p_l+ovt>z-p_h) return s*huge*huge; /* overflow */ in __ieee754_pow()
|
D | s_scalbnf.c | 25 huge = 1.0e+30, variable 43 if (k > 0xfe) return huge*copysignf(huge,x); /* overflow */ in scalbnf() 48 return huge*copysignf(huge,x); /*overflow*/ in scalbnf()
|
D | s_scalbn.c | 31 huge = 1.0e+300, variable 49 if (k > 0x7fe) return huge*copysign(huge,x); /* overflow */ in scalbn() 54 return huge*copysign(huge,x); /*overflow*/ in scalbn()
|
D | s_scalbnl.c | 39 huge = 0x1p16000L, variable 57 if (k >= 0x7fff) return huge*copysignl(huge,x); /* overflow */ in scalbnl() 62 return huge*copysign(huge,x); /*overflow*/ in scalbnl()
|
D | s_trunc.c | 30 static const double huge = 1.0e300; variable 41 if(huge+x>0.0) {/* |x|<1, so return 0*sign(x) */ in trunc() 48 if(huge+x>0.0) { /* raise inexact flag */ in trunc() 58 if(huge+x>0.0) /* raise inexact flag */ in trunc()
|
D | s_truncl.c | 38 static const long double huge = 1.0e300; variable 49 if (huge + x > 0.0) in truncl() 55 if (huge + x > 0.0) { /* raise inexact flag */ in truncl() 64 if (huge + x > 0.0) /* raise inexact flag */ in truncl()
|
D | s_ceil.c | 30 static const double huge = 1.0e300; variable 41 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */ in ceil() 48 if(huge+x>0.0) { /* raise inexact flag */ in ceil() 59 if(huge+x>0.0) { /* raise inexact flag */ in ceil()
|
D | s_floor.c | 30 static const double huge = 1.0e300; variable 41 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */ in floor() 49 if(huge+x>0.0) { /* raise inexact flag */ in floor() 60 if(huge+x>0.0) { /* raise inexact flag */ in floor()
|
D | e_powf.c | 33 huge = 1.0e30, variable 139 if(ix<0x3f7ffff8) return (hy<0)? sn*huge*huge:sn*tiny*tiny; in __ieee754_powf() 140 if(ix>0x3f800007) return (hy>0)? sn*huge*huge:sn*tiny*tiny; in __ieee754_powf() 213 return sn*huge*huge; /* overflow */ in __ieee754_powf() 215 if(p_l+ovt>z-p_h) return sn*huge*huge; /* overflow */ in __ieee754_powf()
|
D | s_expm1f.c | 39 static volatile float huge = 1.0e+30; variable 59 if(x > o_threshold) return huge*huge; /* overflow */ in expm1f() 84 t = huge+x; /* return x with inexact flags when x!=0 */ in expm1f() 85 return x - (t-(huge+x)); in expm1f()
|
D | s_expm1.c | 130 static volatile double huge = 1.0e+300; variable 153 if(x > o_threshold) return huge*huge; /* overflow */ in expm1() 178 t = huge+x; /* return x with inexact flags when x!=0 */ in expm1() 179 return x - (t-(huge+x)); in expm1()
|
D | e_expf.c | 42 huge = 1.0e+30, variable 62 if(x > o_threshold) return huge*huge; /* overflow */ in __ieee754_expf() 79 if(huge+x>one) return one+x;/* trigger inexact */ in __ieee754_expf()
|
D | s_truncf.c | 28 static const float huge = 1.0e30F; variable 39 if(huge+x>0.0F) /* |x|<1, so return 0*sign(x) */ in truncf() 44 if(huge+x>0.0F) /* raise inexact flag */ in truncf()
|
D | s_ceilf.c | 22 static const float huge = 1.0e30; variable 34 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */ in ceilf() 41 if(huge+x>(float)0.0) { /* raise inexact flag */ in ceilf()
|
D | s_floorf.c | 31 static const float huge = 1.0e30; variable 42 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */ in floorf() 50 if(huge+x>(float)0.0) { /* raise inexact flag */ in floorf()
|
D | e_exp.c | 101 huge = 1.0e+300, variable 124 if(x > o_threshold) return huge*huge; /* overflow */ in __ieee754_exp() 141 if(huge+x>one) return one+x;/* trigger inexact */ in __ieee754_exp()
|
D | e_coshf.c | 22 static const float one = 1.0, half=0.5, huge = 1.0e30; variable 58 return huge*huge; in __ieee754_coshf()
|
D | e_cosh.c | 43 static const double one = 1.0, half=0.5, huge = 1.0e300; variable 80 return huge*huge; in __ieee754_cosh()
|
D | s_floorl.c | 52 static const long double huge = 1.0e300; variable 62 if (huge + x > 0.0) in floorl() 78 if (huge + x > 0.0) { /* raise inexact flag */ in floorl() 97 if (huge + x > 0.0) /* raise inexact flag */ in floorl()
|
D | s_ceill.c | 52 static const long double huge = 1.0e300; variable 62 if (huge + x > 0.0) in ceill() 78 if (huge + x > 0.0) { /* raise inexact flag */ in ceill() 97 if (huge + x > 0.0) /* raise inexact flag */ in ceill()
|
D | s_exp2f.c | 48 huge = 0x1p100f, variable 115 return (huge * huge); /* overflow */ in exp2f()
|
D | s_exp2.c | 49 huge = 0x1p1000, variable 362 return (huge * huge); /* overflow */ in exp2()
|
D | e_coshl.c | 40 static const volatile long double huge = 0x1p10000L, tiny = 0x1p-10000L; variable 131 RETURNI(huge*huge); in coshl()
|
/bionic/libm/upstream-freebsd/lib/msun/ld128/ |
D | e_powl.c | 91 huge = 1.0e3000L, variable 274 return (hy < 0) ? huge * huge : tiny * tiny; in powl() 276 return (hy > 0) ? huge * huge : tiny * tiny; in powl() 280 return (hy < 0) ? huge * huge : tiny * tiny; in powl() 282 return (hy > 0) ? huge * huge : tiny * tiny; in powl() 386 return s * huge * huge; /* overflow */ in powl() 390 return s * huge * huge; /* overflow */ in powl()
|
/bionic/libc/upstream-freebsd/lib/libc/gen/ |
D | ldexp.c | 84 huge = 1.0e+300, variable 112 if (k > 0x7fe) return huge*_copysign(huge,x); /* overflow */ in ldexp() 117 return huge*_copysign(huge,x); /*overflow*/ in ldexp()
|