Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-libm/
H A Dsinh.c41 * ln2ovft < x : sinh(x) := x * shuge (overflow)
50 #define shuge 1.0e307 macro
81 if (shuge + x > one) in sinh()
110 return x * shuge; in sinh()
/third_party/FreeBSD/lib/msun/src/
H A De_sinhl.c38 static const long double shuge = 0x1p16383L; variable
106 if(shuge+x>1) RETURNI(x); /* sinh(tiny) = tiny with inexact */ in sinhl()
131 return x*shuge; in sinhl()
/third_party/python/Lib/test/
H A Dtest_long.py489 shuge = '12345' * 120
492 namespace = {'huge': huge, 'mhuge': mhuge, 'shuge': shuge, 'math': math}
511 # XXX Perhaps float(shuge) can raise OverflowError on some box?
513 self.assertNotEqual(float(shuge), int(shuge),
514 "float(shuge) should not equal int(shuge)")
/third_party/node/deps/v8/src/base/
H A Dieee754.cc2913 * ln2ovft < x : sinh(x) := x*shuge (overflow)
2924 static const double shuge = 1.0e307; in sinh() local
2949 return x * shuge; in sinh()

Completed in 9 milliseconds