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

123

/freebsd-11-stable/lib/msun/src/
H A Ds_scalbnf.c25 huge = 1.0e+30, variable
43 if (k > 0xfe) return huge*copysignf(huge,x); /* overflow */
48 return huge*copysignf(huge,x); /*overflow*/
H A Ds_ceilf.c22 static const float huge = 1.0e30; variable
34 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */
41 if(huge+x>(float)0.0) { /* raise inexact flag */
H A Ds_floorf.c31 static const float huge = 1.0e30; variable
42 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */
50 if(huge+x>(float)0.0) { /* raise inexact flag */
H A Ds_truncf.c28 static const float huge = 1.0e30F; variable
39 if(huge+x>0.0F) /* |x|<1, so return 0*sign(x) */
44 if(huge+x>0.0F) /* raise inexact flag */
H A Ds_trunc.c30 static const double huge = 1.0e300; variable
41 if(huge+x>0.0) {/* |x|<1, so return 0*sign(x) */
48 if(huge+x>0.0) { /* raise inexact flag */
58 if(huge+x>0.0) /* raise inexact flag */
H A Ds_truncl.c38 static const long double huge = 1.0e300; variable
49 if (huge + x > 0.0)
55 if (huge + x > 0.0) { /* raise inexact flag */
64 if (huge + x > 0.0) /* raise inexact flag */
H A Ds_scalbn.c31 huge = 1.0e+300, variable
49 if (k > 0x7fe) return huge*copysign(huge,x); /* overflow */
54 return huge*copysign(huge,x); /*overflow*/
H A Ds_scalbnl.c39 huge = 0x1p16000L, variable
57 if (k >= 0x7fff) return huge*copysignl(huge,x); /* overflow */
62 return huge*copysign(huge,x); /*overflow*/
H A De_cosh.c31 * ln2ovft < x : cosh(x) := huge*huge (overflow)
43 static const double one = 1.0, half=0.5, huge = 1.0e300; variable
80 return huge*huge;
H A De_coshf.c22 static const float one = 1.0, half=0.5, huge = 1.0e30; variable
58 return huge*huge;
H A Ds_ceil.c30 static const double huge = 1.0e300; variable
41 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */
48 if(huge+x>0.0) { /* raise inexact flag */
59 if(huge+x>0.0) { /* raise inexact flag */
H A Ds_floor.c30 static const double huge = 1.0e300; variable
41 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */
49 if(huge+x>0.0) { /* raise inexact flag */
60 if(huge+x>0.0) { /* raise inexact flag */
H A De_atanh.c41 static const double one = 1.0, huge = 1e300; variable
56 if(ix<0x3e300000&&(huge+x)>zero) return x; /* x<2**-28 */
H A De_atanhf.c22 static const float one = 1.0, huge = 1e30; variable
37 if(ix<0x31800000&&(huge+x)>zero) return x; /* x<2**-28 */
H A De_atanhl.c51 static const double one = 1.0, huge = 1e300; variable
65 if (ix < BIAS + EXP_TINY && (huge + x) > zero)
H A Ds_asinh.c35 huge= 1.00000000000000000000e+300; variable
46 if(huge+x>one) return x; /* return x inexact except 0 */
H A Ds_asinhf.c25 huge= 1.0000000000e+30; variable
36 if(huge+x>one) return x; /* return x inexact except 0 */
H A Ds_tanh.c46 static const double one = 1.0, two = 2.0, huge = 1.0e300; variable
66 if(huge+x>one) return x; /* tanh(tiny) = tiny with inexact */
H A Ds_tanhf.c23 static const float one=1.0, two=2.0, huge = 1.0e30; variable
43 if(huge+x>one) return x; /* tanh(tiny) = tiny with inexact */
H A De_expf.c42 huge = 1.0e+30, variable
62 if(x > o_threshold) return huge*huge; /* overflow */
79 if(huge+x>one) return one+x;/* trigger inexact */
H A Ds_expm1f.c39 static volatile float huge = 1.0e+30; variable
52 /* filter out huge and non-finite argument */
59 if(x > o_threshold) return huge*huge; /* overflow */
84 t = huge+x; /* return x with inexact flags when x!=0 */
85 return x - (t-(huge+x));
H A De_pow.c75 huge = 1.0e300, variable
192 /* |y| is huge */
195 if(ix<=0x3fefffff) return (hy<0)? huge*huge:tiny*tiny;
196 if(ix>=0x3ff00000) return (hy>0)? huge*huge:tiny*tiny;
199 if(ix<0x3fefffff) return (hy<0)? s*huge*huge:s*tiny*tiny;
200 if(ix>0x3ff00000) return (hy>0)? s*huge*huge
[all...]
H A Ds_exp2f.c46 huge = 0x1p100f, variable
113 return (huge * huge); /* overflow */
H A Ds_ceill.c52 static const long double huge = 1.0e300; variable
62 if (huge + x > 0.0)
78 if (huge + x > 0.0) { /* raise inexact flag */
97 if (huge + x > 0.0) /* raise inexact flag */
/freebsd-11-stable/lib/libc/gen/
H A Dldexp.c84 huge = 1.0e+300, variable
112 if (k > 0x7fe) return huge*_copysign(huge,x); /* overflow */
117 return huge*_copysign(huge,x); /*overflow*/

Completed in 223 milliseconds

123