Home
last modified time | relevance | path

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

12

/sysdeps/ieee754/flt-32/
A De_coshf.c20 static const float huge = 1.0e30; variable
61 return math_narrow_eval (huge*huge); in __ieee754_coshf()
A Ds_scalbnf.c21 huge = 1.0e+30, variable
40 return huge*copysignf(huge,x); /* overflow */ in __scalbnf()
A Ds_scalblnf.c21 huge = 1.0e+30, variable
40 return huge*copysignf(huge,x); /* overflow */ in __scalblnf()
A Ds_expm1f.c23 static const float huge = 1.0e+30; variable
60 return huge*huge; /* overflow */ in __expm1f()
87 t = huge+x; /* return x with inexact flags when x!=0 */ in __expm1f()
88 return x - (t-(huge+x)); in __expm1f()
A De_atanhf.c45 static const float huge = 1e30; variable
56 math_force_eval (huge + x); in __ieee754_atanhf()
A Ds_asinhf.c24 huge= 1.0000000000e+30; variable
35 if(huge+x>one) return x; /* return x inexact except 0 */ in __asinhf()
/sysdeps/ieee754/ldbl-128ibm/
A De_coshl.c38 static const long double one = 1.0L, half=0.5L, huge = 1.0e300L; variable
80 return huge*huge; in __ieee754_coshl()
A De_powl.c93 huge = 1.0e300L, variable
282 return (hy < 0) ? sgn * huge * huge : sgn * tiny * tiny; in __ieee754_powl()
284 return (hy > 0) ? sgn * huge * huge : sgn * tiny * tiny; in __ieee754_powl()
288 return (hy < 0) ? sgn * huge * huge : sgn * tiny * tiny; in __ieee754_powl()
290 return (hy > 0) ? sgn * huge * huge : sgn * tiny * tiny; in __ieee754_powl()
372 return sgn * huge * huge; /* overflow */ in __ieee754_powl()
376 return sgn * huge * huge; /* overflow */ in __ieee754_powl()
/sysdeps/ieee754/dbl-64/
A De_cosh.c38 static const double one = 1.0, half=0.5, huge = 1.0e300; variable
83 return math_narrow_eval (huge * huge); in __ieee754_cosh()
A Ds_scalbln.c25 huge = 1.0e+300, variable
45 return huge*copysign(huge,x); /* overflow */ in __scalbln()
A Ds_scalbn.c25 huge = 1.0e+300, variable
45 return huge*copysign(huge,x); /* overflow */ in __scalbn()
A De_atanh.c45 static const double huge = 1e300; variable
56 math_force_eval (huge + x); in __ieee754_atanh()
A Ds_expm1.c120 huge = 1.0e+300, variable
165 return huge * huge; /* overflow */ in __expm1()
202 t = huge + x; /* return x with inexact flags when x!=0 */ in __expm1()
203 return x - (t - (huge + x)); in __expm1()
A Ds_asinh.c33 huge = 1.00000000000000000000e+300; variable
45 if (huge + x > one) in __asinh()
/sysdeps/ieee754/ldbl-96/
A Ds_scalblnl.c28 huge = 1.0e+4900L, variable
47 return huge*copysignl(huge,x); /* overflow */ in __scalblnl()
A De_coshl.c41 static const long double one = 1.0, half=0.5, huge = 1.0e4900L; variable
86 return huge*huge; in __ieee754_coshl()
A De_atanhl.c40 static const long double one = 1.0, huge = 1e4900L; variable
58 math_force_eval(huge+x); in __ieee754_atanhl()
A Ds_asinhl.c39 huge= 1.000000000000000000e+4900L; variable
49 if(huge+x>one) return x; /* return x inexact except 0 */ in __asinhl()
/sysdeps/ieee754/ldbl-128/
A Ds_scalblnl.c33 huge = L(1.0E+4900), variable
50 return huge*copysignl(huge,x); /* overflow */ in __scalblnl()
A Ds_scalbnl.c33 huge = L(1.0E+4900), variable
50 return huge*copysignl(huge,x); /* overflow */ in __scalbnl()
A De_coshl.c58 static const _Float128 one = 1.0, half = 0.5, huge = L(1.0e4900), variable
109 return huge * huge; in __ieee754_coshl()
A De_powl.c93 huge = L(1.0e3000), variable
282 return (hy < 0) ? huge * huge : tiny * tiny; in __ieee754_powl()
284 return (hy > 0) ? huge * huge : tiny * tiny; in __ieee754_powl()
288 return (hy < 0) ? sgn * huge * huge : sgn * tiny * tiny; in __ieee754_powl()
290 return (hy > 0) ? sgn * huge * huge : sgn * tiny * tiny; in __ieee754_powl()
392 return sgn * huge * huge; /* overflow */ in __ieee754_powl()
396 return sgn * huge * huge; /* overflow */ in __ieee754_powl()
/sysdeps/i386/fpu/
A Ds_asinh.S25 .type huge,@object
26 huge: .double 1e+300 label
27 ASM_SIZE_DIRECTIVE(huge)
101 faddl MO(huge) // huge+x : x
A Ds_asinhf.S25 .type huge,@object
26 huge: .double 1e+36 label
27 ASM_SIZE_DIRECTIVE(huge)
101 faddl MO(huge) // huge+x : x
A Ds_asinhl.S25 .type huge,@object
26 huge: .tfloat 1e+4930 label
27 ASM_SIZE_DIRECTIVE(huge)
109 fldt MO(huge) // huge : x : x

Completed in 35 milliseconds

12