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

  /bionic/libm/src/
e_sinh.c 29 * ln2ovft < x : sinh(x) := x*shuge (overflow)
39 static const double one = 1.0, shuge = 1.0e307; variable
60 if(shuge+x>one) return x;/* sinh(tiny) = tiny with inexact */
78 return x*shuge;
e_sinhf.c 23 static const float one = 1.0, shuge = 1.0e37; variable
42 if(shuge+x>one) return x;/* sinh(tiny) = tiny with inexact */
59 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 163 milliseconds