HomeSort by: relevance | last modified time | path
    Searched defs:huge (Results 1 - 25 of 41) sorted by relevancy

1 2

  /src/lib/libm/src/
s_ceilf.c 24 static const float huge = 1.0e30; variable in typeref:typename:const float
36 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */
43 if(huge+x>(float)0.0) { /* raise inexact flag */
s_floorf.c 33 static const float huge = 1.0e30; variable in typeref:typename:const float
44 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */
52 if(huge+x>(float)0.0) { /* raise inexact flag */
s_truncf.c 33 static const float huge = 1.0e30F; variable in typeref:typename:const float
44 if(huge+x>0.0F) /* |x|<1, so return 0*sign(x) */
49 if(huge+x>0.0F) /* raise inexact flag */
e_atanhf.c 24 static const float one = 1.0, huge = 1e30; variable in typeref:typename:const float
39 if(ix<0x31800000&&(huge+x)>zero) return x; /* x<2**-28 */
e_coshf.c 24 static const float huge = 1.0e30; variable in typeref:typename:const float
64 return huge*huge;
s_ceil.c 30 static const double huge = 1.0e300; variable in typeref:typename:const double
46 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */
53 if(huge+x>0.0) { /* raise inexact flag */
64 if(huge+x>0.0) { /* raise inexact flag */
e_atanh.c 39 static const double one = 1.0, huge = 1e300; variable in typeref:typename:const double
55 if(ix<0x3e300000&&(huge+x)>zero) return x; /* x<2**-28 */
e_cosh.c 32 * ln2ovft < x : cosh(x) := huge*huge (overflow)
42 static const double one = 1.0, half=0.5, huge = 1.0e300; variable in typeref:typename:const double
85 return huge*huge;
s_asinh.c 35 huge= 1.00000000000000000000e+300; variable in typeref:typename:const double
46 if(huge+x>one) return x; /* return x inexact except 0 */
s_asinhf.c 27 huge= 1.0000000000e+30; variable in typeref:typename:const float
38 if(huge+x>one) return x; /* return x inexact except 0 */
s_atan.c 82 huge = 1.0e300; variable in typeref:typename:const double
102 if(huge+x>one) return x; /* raise inexact */
s_atanf.c 61 huge = 1.0e30; variable in typeref:typename:const float
78 if(huge+x>one) return x; /* raise inexact */
e_asin.c 54 huge = 1.000e+300, variable in typeref:typename:const double
88 if(huge+x>one) return x;/* return x with inexact if x!=0*/
e_asinf.c 26 huge = 1.000e+30, variable in typeref:typename:const float
58 if(huge+x>one) return x;/* return x with inexact if x!=0*/
e_exp.c 87 huge = 1.0e+300, variable in typeref:typename:const double[2]
125 if(x > o_threshold) return huge*huge; /* overflow */
142 if(huge+x>one) return one+x;/* trigger inexact */
e_expf.c 24 static const float huge = 1.0e+30; variable in typeref:typename:const float
62 if(x > o_threshold) return huge*huge; /* overflow */
79 if(huge+x>one) return one+x;/* trigger inexact */
s_exp2.c 51 static volatile long double huge = 0x1p+16000L; variable in typeref:typename:volatile long double
54 static volatile double huge = 0x1p+1000; variable in typeref:typename:volatile double
373 return (huge * huge); /* overflow */
s_exp2f.c 53 * This is normally done by calculating 'huge * huge' or 'tiny * tiny'.
66 static volatile float huge = 0x1p+100; variable in typeref:typename:volatile float
68 #define overflow (huge * huge)
s_expm1.c 118 huge = 1.0e+300, variable in typeref:typename:const double
146 /* filter out huge and non-finite argument */
156 if(x > o_threshold) return huge*huge; /* overflow */
181 t = huge+x; /* return x with inexact flags when x!=0 */
182 return x - (t-(huge+x));
s_expm1f.c 24 static const float huge = 1.0e+30, tiny = 1.0e-30; variable in typeref:typename:const float
54 /* filter out huge and non-finite argument */
61 if(x > o_threshold) return huge*huge; /* overflow */
86 t = huge+x; /* return x with inexact flags when x!=0 */
87 return x - (t-(huge+x));
  /src/lib/libc/compat/gen/
compat_ldexp_ieee754.c 45 static volatile const double tiny = DBL_MIN, huge = DBL_MAX; variable in typeref:typename:volatile const double
60 return (val < 0 ? -huge*huge : huge*huge);
  /src/lib/libm/noieee_src/
n_pow.c 186 double huge = _HUGE, tiny = _TINY; local in function:pow_P
192 return (huge*huge);
202 return (huge*huge);
210 return (huge*huge);
n_exp2.c 43 huge = 0x1p126, variable in typeref:typename:const double
356 return (huge * huge); /* overflow */
n_exp2f.c 43 huge = 0x1p100f, variable in typeref:typename:const float
110 return (huge * huge); /* overflow */
  /src/lib/libm/ld80/
s_exp2l.c 45 huge = 0x1p10000L, variable in typeref:typename:volatile long double
234 return (huge * huge); /* overflow */

Completed in 21 milliseconds

1 2