Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-libm/
Dsinh.c50 #define shuge 1.0e307 macro
81 if (shuge + x > one) in sinh()
110 return x * shuge; in sinh()
/third_party/FreeBSD/lib/msun/src/
De_sinhl.c40 static const long double shuge = 0x1p16383L; variable
108 if(shuge+x>1) RETURNI(x); /* sinh(tiny) = tiny with inexact */ in sinhl()
133 return x*shuge; in sinhl()
/third_party/python/Lib/test/
Dtest_long.py488 shuge = '12345' * 120
491 namespace = {'huge': huge, 'mhuge': mhuge, 'shuge': shuge, 'math': math}
512 self.assertNotEqual(float(shuge), int(shuge),
/third_party/node/deps/v8/src/base/
Dieee754.cc2924 static const double shuge = 1.0e307; in sinh() local
2949 return x * shuge; in sinh()