Home
last modified time | relevance | path

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

/external/fdlibm/
De_sinh.c35 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;
/external/python/cpython2/Lib/test/
Dtest_long.py780 shuge = '12345' * 120
783 namespace = {'huge': huge, 'mhuge': mhuge, 'shuge': shuge, 'math': math}
802 self.assertNotEqual(float(shuge), int(shuge),
/external/python/cpython3/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),
/external/v8/src/base/
Dieee754.cc2658 static const double shuge = 1.0e307; in sinh() local
2683 return x * shuge; in sinh()