Home
last modified time | relevance | path

Searched refs:huge (Results 1 – 25 of 90) sorted by relevance

1234

/minix/lib/libm/src/
H A Ds_scalbnf.c35 huge = 1.0e+30,
61 if (k > 0xfe) return huge*copysignf(huge,x); /* overflow */ in scalblnf()
66 return huge*copysignf(huge,x); /*overflow*/ in scalblnf()
H A De_pow.c75 huge = 1.0e300, variable
188 if(ix<=0x3fefffff) return (hy<0)? huge*huge:tiny*tiny; in __ieee754_pow()
189 if(ix>=0x3ff00000) return (hy>0)? huge*huge:tiny*tiny; in __ieee754_pow()
192 if(ix<0x3fefffff) return (hy<0)? s*huge*huge:s*tiny*tiny; in __ieee754_pow()
193 if(ix>0x3ff00000) return (hy>0)? s*huge*huge:s*tiny*tiny; in __ieee754_pow()
262 return s*huge*huge; /* overflow */ in __ieee754_pow()
264 if(p_l+ovt>z-p_h) return s*huge*huge; /* overflow */ in __ieee754_pow()
H A Ds_scalbn.c49 huge = 1.0e+300,
75 if (k > 0x7fe) return huge*copysign(huge,x); /* overflow */ in scalbln()
80 return huge*copysign(huge,x); /*overflow*/ in scalbln()
H A Ds_trunc.c38 static const double huge = 1.0e300;
49 if(huge+x>0.0) {/* |x|<1, so return 0*sign(x) */ in trunc()
56 if(huge+x>0.0) { /* raise inexact flag */ in trunc()
66 if(huge+x>0.0) /* raise inexact flag */ in trunc()
H A Ds_truncl.c47 static const long double huge = 1.0e300;
58 if (huge + x > 0.0) in truncl()
64 if (huge + x > 0.0) { /* raise inexact flag */ in truncl()
73 if (huge + x > 0.0) /* raise inexact flag */ in truncl()
H A Ds_floor.c35 static const double huge = 1.0e300;
46 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */ in floor()
54 if(huge+x>0.0) { /* raise inexact flag */ in floor()
65 if(huge+x>0.0) { /* raise inexact flag */ in floor()
H A Ds_ceil.c30 static const double huge = 1.0e300; variable
46 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */ in __strong_alias()
53 if(huge+x>0.0) { /* raise inexact flag */ in __strong_alias()
64 if(huge+x>0.0) { /* raise inexact flag */ in __strong_alias()
H A Ds_truncf.c33 static const float huge = 1.0e30F; variable
44 if(huge+x>0.0F) /* |x|<1, so return 0*sign(x) */ in truncf()
49 if(huge+x>0.0F) /* raise inexact flag */ in truncf()
H A Ds_floorf.c33 static const float huge = 1.0e30; variable
44 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */ in floorf()
52 if(huge+x>(float)0.0) { /* raise inexact flag */ in floorf()
H A Ds_ceilf.c24 static const float huge = 1.0e30; variable
36 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */ in ceilf()
43 if(huge+x>(float)0.0) { /* raise inexact flag */ in ceilf()
H A Ds_exp2.c51 static volatile long double huge = 0x1p+16000L; variable
54 static volatile double huge = 0x1p+1000; variable
373 return (huge * huge); /* overflow */ in exp2()
H A De_powf.c25 static const float huge = 1.0e+30, tiny = 1.0e-30; variable
131 if(ix<0x3f7ffff8) return (hy<0)? huge*huge:tiny*tiny; in __ieee754_powf()
132 if(ix>0x3f800007) return (hy>0)? huge*huge:tiny*tiny; in __ieee754_powf()
208 return s*huge*huge; /* overflow */ in __ieee754_powf()
210 if(p_l+ovt>z-p_h) return s*huge*huge; /* overflow */ in __ieee754_powf()
H A Ds_floorl.c61 static const long double huge = 1.0e300;
71 if (huge + x > 0.0) in floorl()
87 if (huge + x > 0.0) { /* raise inexact flag */ in floorl()
106 if (huge + x > 0.0) /* raise inexact flag */ in floorl()
H A Ds_ceill.c61 static const long double huge = 1.0e300;
71 if (huge + x > 0.0) in ceill()
87 if (huge + x > 0.0) { /* raise inexact flag */ in ceill()
106 if (huge + x > 0.0) /* raise inexact flag */ in ceill()
H A Ds_expm1.c118 huge = 1.0e+300, variable
154 if(x > o_threshold) return huge*huge; /* overflow */ in expm1()
179 t = huge+x; /* return x with inexact flags when x!=0 */ in expm1()
180 return x - (t-(huge+x)); in expm1()
H A Ds_expm1f.c24 static const float huge = 1.0e+30, tiny = 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()
H A De_coshf.c24 static const float huge = 1.0e30; variable
64 return huge*huge; in __ieee754_coshf()
H A De_expf.c24 static const float 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()
H A De_cosh.c42 static const double one = 1.0, half=0.5, huge = 1.0e300; variable
85 return huge*huge; in __ieee754_cosh()
H A De_exp.c87 huge = 1.0e+300, variable
125 if(x > o_threshold) return huge*huge; /* overflow */ in __ieee754_exp()
142 if(huge+x>one) return one+x;/* trigger inexact */ in __ieee754_exp()
H A Ds_exp2f.c66 static volatile float huge = 0x1p+100; variable
68 #define overflow (huge * huge)
H A De_atanhf.c24 static const float one = 1.0, huge = 1e30; variable
39 if(ix<0x31800000&&(huge+x)>zero) return x; /* x<2**-28 */ in __ieee754_atanhf()
/minix/lib/libm/noieee_src/
H A Dn_pow.c186 double huge = _HUGE, tiny = _TINY; in pow_P() local
192 return (huge*huge); in pow_P()
202 return (huge*huge); in pow_P()
210 return (huge*huge); in pow_P()
H A Dn_exp2f.c43 huge = 0x1p100f, variable
110 return (huge * huge); /* overflow */ in exp2f()
H A Dn_exp2.c43 huge = 0x1p126, variable
356 return (huge * huge); /* overflow */ in exp2()

1234