/bionic/libm/src/ |
D | s_scalbnf.c | 28 huge = 1.0e+30, variable 46 if (k > 0xfe) return huge*copysignf(huge,x); /* overflow */ in scalbnf() 51 return huge*copysignf(huge,x); /*overflow*/ in scalbnf()
|
D | s_scalbnl.c | 41 huge = 0x1p16000L, variable 59 if (k >= 0x7fff) return huge*copysignl(huge,x); /* overflow */ in scalbnl() 64 return huge*copysign(huge,x); /*overflow*/ in scalbnl()
|
D | s_trunc.c | 28 static const double huge = 1.0e300; variable 39 if(huge+x>0.0) {/* |x|<1, so return 0*sign(x) */ in trunc() 46 if(huge+x>0.0) { /* raise inexact flag */ in trunc() 56 if(huge+x>0.0) /* raise inexact flag */ in trunc()
|
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_scalbn.c | 33 huge = 1.0e+300, variable 51 if (k > 0x7fe) return huge*copysign(huge,x); /* overflow */ in scalbn() 56 return huge*copysign(huge,x); /*overflow*/ in scalbn()
|
D | s_truncl.c | 39 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_ceilf.c | 23 static const float huge = 1.0e30; variable 35 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */ in ceilf() 42 if(huge+x>(float)0.0) { /* raise inexact flag */ in ceilf()
|
D | s_floorf.c | 32 static const float huge = 1.0e30; variable 43 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */ in floorf() 51 if(huge+x>(float)0.0) { /* raise inexact flag */ in floorf()
|
D | s_floor.c | 29 static const double huge = 1.0e300; variable 40 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */ in floor() 48 if(huge+x>0.0) { /* raise inexact flag */ in floor() 59 if(huge+x>0.0) { /* raise inexact flag */ in floor()
|
D | s_ceil.c | 29 static const double huge = 1.0e300; variable 40 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */ in ceil() 47 if(huge+x>0.0) { /* raise inexact flag */ in ceil() 58 if(huge+x>0.0) { /* raise inexact flag */ in ceil()
|
D | e_coshf.c | 23 static const float one = 1.0, half=0.5, huge = 1.0e30; variable 62 return huge*huge; in __ieee754_coshf()
|
D | e_cosh.c | 42 static const double one = 1.0, half=0.5, huge = 1.0e300; variable 85 return huge*huge; in __ieee754_cosh()
|
D | e_pow.c | 72 huge = 1.0e300, variable 189 if(ix<=0x3fefffff) return (hy<0)? huge*huge:tiny*tiny; in __ieee754_pow() 190 if(ix>=0x3ff00000) return (hy>0)? huge*huge:tiny*tiny; in __ieee754_pow() 193 if(ix<0x3fefffff) return (hy<0)? s*huge*huge:s*tiny*tiny; in __ieee754_pow() 194 if(ix>0x3ff00000) return (hy>0)? s*huge*huge:s*tiny*tiny; in __ieee754_pow() 263 return s*huge*huge; /* overflow */ in __ieee754_pow() 265 if(p_l+ovt>z-p_h) return s*huge*huge; /* overflow */ in __ieee754_pow()
|
D | e_expf.c | 26 huge = 1.0e+30, variable 58 if(x > o_threshold) return huge*huge; /* overflow */ in __ieee754_expf() 75 if(huge+x>one) return one+x;/* trigger inexact */ in __ieee754_expf()
|
D | s_exp2f.c | 37 huge = 0x1p100f, variable 109 return (huge * huge); /* overflow */ in exp2f()
|
D | e_exp.c | 86 huge = 1.0e+300, variable 122 if(x > o_threshold) return huge*huge; /* overflow */ in __ieee754_exp() 139 if(huge+x>one) return one+x;/* trigger inexact */ in __ieee754_exp()
|
D | e_atanhf.c | 23 static const float one = 1.0, huge = 1e30; variable 38 if(ix<0x31800000&&(huge+x)>zero) return x; /* x<2**-28 */ in __ieee754_atanhf()
|
D | s_expm1.c | 117 huge = 1.0e+300, variable 152 if(x > o_threshold) return huge*huge; /* overflow */ in expm1() 177 t = huge+x; /* return x with inexact flags when x!=0 */ in expm1() 178 return x - (t-(huge+x)); in expm1()
|
D | s_expm1f.c | 25 huge = 1.0e+30, variable 57 if(x > o_threshold) return huge*huge; /* overflow */ in expm1f() 82 t = huge+x; /* return x with inexact flags when x!=0 */ in expm1f() 83 return x - (t-(huge+x)); in expm1f()
|
D | s_floorl.c | 53 static const long double huge = 1.0e300; variable 63 if (huge + x > 0.0) in floorl() 79 if (huge + x > 0.0) { /* raise inexact flag */ in floorl() 98 if (huge + x > 0.0) /* raise inexact flag */ in floorl()
|
D | s_ceill.c | 53 static const long double huge = 1.0e300; variable 63 if (huge + x > 0.0) in ceill() 79 if (huge + x > 0.0) { /* raise inexact flag */ in ceill() 98 if (huge + x > 0.0) /* raise inexact flag */ in ceill()
|
D | s_exp2.c | 37 huge = 0x1p1000, variable 356 return (huge * huge); /* overflow */ in exp2()
|
D | s_asinhf.c | 26 huge= 1.0000000000e+30; variable 37 if(huge+x>one) return x; /* return x inexact except 0 */ in asinhf()
|
D | e_atanh.c | 40 static const double one = 1.0, huge = 1e300; variable 55 if(ix<0x3e300000&&(huge+x)>zero) return x; /* x<2**-28 */ in __ieee754_atanh()
|
/bionic/libc/bionic/ |
D | ldexp.c | 83 huge = 1.0e+300, variable 111 if (k > 0x7fe) return huge*_copysign(huge,x); /* overflow */ in ldexp() 116 return huge*_copysign(huge,x); /*overflow*/ in ldexp()
|