Searched refs:shuge (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/lib/msun/src/
H A De_sinh.c28 * ln2ovft < x : sinh(x) := x*shuge (overflow)
40 static const double one = 1.0, shuge = 1.0e307; variable
60 if(shuge+x>one) return x;/* sinh(tiny) = tiny with inexact */
74 return x*shuge;
H A De_sinhf.c22 static const float one = 1.0, shuge = 1.0e37; variable
41 if(shuge+x>one) return x;/* sinh(tiny) = tiny with inexact */
55 return x*shuge;
H A De_sinhl.c40 static const long double shuge = 0x1p16383L; variable
108 if(shuge+x>1) RETURNI(x); /* sinh(tiny) = tiny with inexact */
133 return x*shuge;

Completed in 90 milliseconds