Searched refs:huge (Results 1 - 25 of 52) sorted by relevance

123

/freebsd-current/lib/msun/src/
H A Ds_floorf.c28 static const float huge = 1.0e30; variable
39 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */
47 if(huge+x>(float)0.0) { /* raise inexact flag */
H A Ds_ceilf.c19 static const float huge = 1.0e30; variable
31 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */
38 if(huge+x>(float)0.0) { /* raise inexact flag */
H A Ds_truncf.c24 static const float huge = 1.0e30F; variable
35 if(huge+x>0.0F) /* |x|<1, so return 0*sign(x) */
40 if(huge+x>0.0F) /* raise inexact flag */
H A Ds_trunc.c26 static const double huge = 1.0e300; variable
37 if(huge+x>0.0) {/* |x|<1, so return 0*sign(x) */
44 if(huge+x>0.0) { /* raise inexact flag */
54 if(huge+x>0.0) /* raise inexact flag */
H A Ds_truncl.c33 static const long double huge = 1.0e300; variable
44 if (huge + x > 0.0)
50 if (huge + x > 0.0) { /* raise inexact flag */
59 if (huge + x > 0.0) /* raise inexact flag */
H A De_cosh.c27 * ln2ovft < x : cosh(x) := huge*huge (overflow)
39 static const double one = 1.0, half=0.5, huge = 1.0e300; variable
76 return huge*huge;
H A De_coshf.c19 static const float one = 1.0, half=0.5, huge = 1.0e30; variable
55 return huge*huge;
H A De_atanhf.c19 static const float one = 1.0, huge = 1e30; variable
34 if(ix<0x31800000&&(huge+x)>zero) return x; /* x<2**-28 */
H A Ds_floor.c26 static const double huge = 1.0e300; variable
37 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */
45 if(huge+x>0.0) { /* raise inexact flag */
56 if(huge+x>0.0) { /* raise inexact flag */
H A Ds_ceil.c26 static const double huge = 1.0e300; variable
37 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */
44 if(huge+x>0.0) { /* raise inexact flag */
55 if(huge+x>0.0) { /* raise inexact flag */
H A De_atanhl.c47 static const double one = 1.0, huge = 1e300; variable
61 if (ix < BIAS + EXP_TINY && (huge + x) > zero)
H A Ds_tanh.c42 static const double one = 1.0, two = 2.0, huge = 1.0e300; variable
62 if(huge+x>one) return x; /* tanh(tiny) = tiny with inexact */
H A Ds_tanhf.c20 static const float one=1.0, two=2.0, huge = 1.0e30; variable
40 if(huge+x>one) return x; /* tanh(tiny) = tiny with inexact */
H A Ds_asinh.c31 huge= 1.00000000000000000000e+300; variable
42 if(huge+x>one) return x; /* return x inexact except 0 */
H A Ds_asinhf.c22 huge= 1.0000000000e+30; variable
33 if(huge+x>one) return x; /* return x inexact except 0 */
H A De_atanh.c37 static const double one = 1.0, huge = 1e300; variable
52 if(ix<0x3e300000&&(huge+x)>zero) return x; /* x<2**-28 */
H A De_exp.c97 huge = 1.0e+300, variable
120 if(x > o_threshold) return huge*huge; /* overflow */
137 if(huge+x>one) return one+x;/* trigger inexact */
H A De_expf.c39 huge = 1.0e+30, variable
59 if(x > o_threshold) return huge*huge; /* overflow */
76 if(huge+x>one) return one+x;/* trigger inexact */
H A Ds_floorl.c47 static const long double huge = 1.0e300; variable
57 if (huge + x > 0.0)
73 if (huge + x > 0.0) { /* raise inexact flag */
92 if (huge + x > 0.0) /* raise inexact flag */
H A Ds_ceill.c47 static const long double huge = 1.0e300; variable
57 if (huge + x > 0.0)
73 if (huge + x > 0.0) { /* raise inexact flag */
92 if (huge + x > 0.0) /* raise inexact flag */
H A Ds_expm1.c126 static volatile double huge = 1.0e+300; variable
139 /* filter out huge and non-finite argument */
149 if(x > o_threshold) return huge*huge; /* overflow */
174 t = huge+x; /* return x with inexact flags when x!=0 */
175 return x - (t-(huge+x));
H A Ds_expm1f.c36 static volatile float huge = 1.0e+30; variable
49 /* filter out huge and non-finite argument */
56 if(x > o_threshold) return huge*huge; /* overflow */
81 t = huge+x; /* return x with inexact flags when x!=0 */
82 return x - (t-(huge+x));
H A De_pow.c71 huge = 1.0e300, variable
188 /* |y| is huge */
191 if(ix<=0x3fefffff) return (hy<0)? huge*huge:tiny*tiny;
192 if(ix>=0x3ff00000) return (hy>0)? huge*huge:tiny*tiny;
195 if(ix<0x3fefffff) return (hy<0)? s*huge*huge:s*tiny*tiny;
196 if(ix>0x3ff00000) return (hy>0)? s*huge*huge
[all...]
H A Ds_exp2f.c45 huge = 0x1p100f, variable
112 return (huge * huge); /* overflow */
H A Ds_atanf.c43 huge = 1.0e30; variable
60 if(huge+x>one) return x; /* raise inexact */

Completed in 295 milliseconds

123