/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;
|
/device/linaro/bootloader/edk2/StdLib/LibC/Math/ |
e_sinh.c | 32 * 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;
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_long.py | 746 shuge = '12345' * 120
749 namespace = {'huge': huge, 'mhuge': mhuge, 'shuge': shuge, 'math': math}
766 # XXX Perhaps float(shuge) can raise OverflowError on some box?
768 self.assertNotEqual(float(shuge), int(shuge),
769 "float(shuge) should not equal int(shuge)")
[all...] |
/external/python/cpython2/Lib/test/ |
test_long.py | 780 shuge = '12345' * 120 783 namespace = {'huge': huge, 'mhuge': mhuge, 'shuge': shuge, 'math': math} 800 # XXX Perhaps float(shuge) can raise OverflowError on some box? 802 self.assertNotEqual(float(shuge), int(shuge), 803 "float(shuge) should not equal int(shuge)") [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_long.py | 748 shuge = '12345' * 120 751 namespace = {'huge': huge, 'mhuge': mhuge, 'shuge': shuge, 'math': math} 768 # XXX Perhaps float(shuge) can raise OverflowError on some box? 770 self.assertNotEqual(float(shuge), int(shuge), 771 "float(shuge) should not equal int(shuge)") [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_long.py | 748 shuge = '12345' * 120 751 namespace = {'huge': huge, 'mhuge': mhuge, 'shuge': shuge, 'math': math} 768 # XXX Perhaps float(shuge) can raise OverflowError on some box? 770 self.assertNotEqual(float(shuge), int(shuge), 771 "float(shuge) should not equal int(shuge)") [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_long.py | 748 shuge = '12345' * 120 751 namespace = {'huge': huge, 'mhuge': mhuge, 'shuge': shuge, 'math': math} 768 # XXX Perhaps float(shuge) can raise OverflowError on some box? 770 self.assertNotEqual(float(shuge), int(shuge), 771 "float(shuge) should not equal int(shuge)") [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_long.py | 748 shuge = '12345' * 120 751 namespace = {'huge': huge, 'mhuge': mhuge, 'shuge': shuge, 'math': math} 768 # XXX Perhaps float(shuge) can raise OverflowError on some box? 770 self.assertNotEqual(float(shuge), int(shuge), 771 "float(shuge) should not equal int(shuge)") [all...] |
/external/python/cpython3/Lib/test/ |
test_long.py | 484 shuge = '12345' * 120 487 namespace = {'huge': huge, 'mhuge': mhuge, 'shuge': shuge, 'math': math} 506 # XXX Perhaps float(shuge) can raise OverflowError on some box? 508 self.assertNotEqual(float(shuge), int(shuge), 509 "float(shuge) should not equal int(shuge)") [all...] |
/external/v8/src/base/ |
ieee754.cc | 2657 static const double shuge = 1.0e307; local [all...] |