Home
last modified time | relevance | path

Searched refs:shuge (Results 1 – 5 of 5) sorted by relevance

/glibc-2.36/sysdeps/ieee754/flt-32/
De_sinhf.c22 static const float one = 1.0, shuge = 1.0e37; variable
42 if(shuge+x>one) return x;/* sinh(tiny) = tiny with inexact */ in __ieee754_sinhf()
60 return math_narrow_eval (x*shuge); in __ieee754_sinhf()
/glibc-2.36/sysdeps/ieee754/ldbl-128ibm/
De_sinhl.c37 static const long double one = 1.0, shuge = 1.0e307; variable
60 if(shuge+x>one) return x;/* sinhl(tiny) = tiny with inexact */ in __ieee754_sinhl()
79 return x*shuge; in __ieee754_sinhl()
/glibc-2.36/sysdeps/ieee754/ldbl-96/
De_sinhl.c43 static const long double one = 1.0, shuge = 1.0e4931L; variable
64 if(shuge+x>one) return x;/* sinh(tiny) = tiny with inexact */ in __ieee754_sinhl()
85 return x*shuge; in __ieee754_sinhl()
/glibc-2.36/sysdeps/ieee754/dbl-64/
De_sinh.c42 static const double one = 1.0, shuge = 1.0e307; variable
67 if (shuge + x > one) in __ieee754_sinh()
91 return math_narrow_eval (x * shuge); in __ieee754_sinh()
/glibc-2.36/sysdeps/ieee754/ldbl-128/
De_sinhl.c60 static const _Float128 one = 1.0, shuge = L(1.0e4931), variable
92 if (shuge + x > one) in __ieee754_sinhl()
115 return x * shuge; in __ieee754_sinhl()