HomeSort by relevance Sort by last modified time
    Searched defs:shuge (Results 1 - 4 of 4) sorted by null

  /bionic/libm/upstream-freebsd/lib/msun/src/
e_sinh.c 28 * 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;
e_sinhf.c 22 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;
e_sinhl.c 40 static const long double shuge = 0x1p16383L; variable
105 if(shuge+x>1) RETURNI(x); /* sinh(tiny) = tiny with inexact */
130 return x*shuge;
  /external/fdlibm/
e_sinh.c 25 * ln2ovft < x : ieee_sinh(x) := x*shuge (overflow)
35 static const double one = 1.0, shuge = 1.0e307; variable
37 static double one = 1.0, shuge = 1.0e307; variable
63 if(shuge+x>one) return x;/* ieee_sinh(tiny) = tiny with inexact */
81 return x*shuge;

Completed in 334 milliseconds