HomeSort by relevance Sort by last modified time
    Searched refs:huge (Results 1 - 25 of 179) sorted by null

1 2 3 4 5 6 7 8

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_scalbnf.c 28 huge = 1.0e+30, variable
46 if (k > 0xfe) return huge*copysignf(huge,x); /* overflow */
51 return huge*copysignf(huge,x); /*overflow*/
s_ceilf.c 22 static const float huge = 1.0e30; variable
34 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */
41 if(huge+x>(float)0.0) { /* raise inexact flag */
s_floorf.c 31 static const float huge = 1.0e30; variable
42 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */
50 if(huge+x>(float)0.0) { /* raise inexact flag */
s_truncf.c 28 static const float huge = 1.0e30F; variable
39 if(huge+x>0.0F) /* |x|<1, so return 0*sign(x) */
44 if(huge+x>0.0F) /* raise inexact flag */
s_trunc.c 30 static const double huge = 1.0e300; variable
41 if(huge+x>0.0) {/* |x|<1, so return 0*sign(x) */
48 if(huge+x>0.0) { /* raise inexact flag */
58 if(huge+x>0.0) /* raise inexact flag */
s_truncl.c 38 static const long double huge = 1.0e300; variable
49 if (huge + x > 0.0)
55 if (huge + x > 0.0) { /* raise inexact flag */
64 if (huge + x > 0.0) /* raise inexact flag */
s_scalbn.c 33 huge = 1.0e+300, variable
51 if (k > 0x7fe) return huge*copysign(huge,x); /* overflow */
56 return huge*copysign(huge,x); /*overflow*/
s_scalbnl.c 41 huge = 0x1p16000L, variable
59 if (k >= 0x7fff) return huge*copysignl(huge,x); /* overflow */
64 return huge*copysign(huge,x); /*overflow*/
e_cosh.c 31 * ln2ovft < x : cosh(x) := huge*huge (overflow)
43 static const double one = 1.0, half=0.5, huge = 1.0e300; variable
80 return huge*huge;
e_coshf.c 22 static const float one = 1.0, half=0.5, huge = 1.0e30; variable
58 return huge*huge;
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-powerpc/
relbrlt.s 9 bl huge
32 .section .text.huge,"ax"
33 huge: label
  /device/google/contexthub/firmware/lib/libm/
sf_floor.c 28 static const float huge = 1.0e30; variable
30 static float huge = 1.0e30; variable
47 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */
55 if(huge+x>(float)0.0) { /* raise inexact flag */
sf_scalbn.c 33 huge = 1.0e+30, variable
60 if (k > FLT_LARGEST_EXP) return huge*copysignf(huge,x); /* overflow */
65 return huge*copysignf(huge,x); /*overflow*/
  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
s_scalbn.c 31 huge = 1.0e+300, variable
49 if (k > 0x7fe) return huge*copysign(huge,x); /* overflow */
54 return huge*copysign(huge,x); /*overflow*/
  /external/fdlibm/
s_ceil.c 26 static const double huge = 1.0e300; variable
28 static double huge = 1.0e300; variable
45 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */
52 if(huge+x>0.0) { /* raise inexact flag */
63 if(huge+x>0.0) { /* raise inexact flag */
s_floor.c 26 static const double huge = 1.0e300; variable
28 static double huge = 1.0e300; variable
45 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */
53 if(huge+x>0.0) { /* raise inexact flag */
64 if(huge+x>0.0) { /* raise inexact flag */
s_scalbn.c 30 huge = 1.0e+300, variable
53 if (k > 0x7fe) return huge*ieee_copysign(huge,x); /* overflow */
58 return huge*ieee_copysign(huge,x); /*overflow*/
e_atanh.c 36 static const double one = 1.0, huge = 1e300; variable
38 static double one = 1.0, huge = 1e300; variable
60 if(ix<0x3e300000&&(huge+x)>zero) return x; /* x<2**-28 */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_long_future.py 55 huge = 1L << 40000
56 mhuge = -huge
57 self.assertEqual(huge / huge, 1.0)
59 self.assertEqual(huge / mhuge, -1.0)
60 self.assertEqual(mhuge / huge, -1.0)
61 self.assertEqual(1 / huge, 0.0)
62 self.assertEqual(1L / huge, 0.0)
65 self.assertEqual((666 * huge + (huge >> 1)) / huge, 666.5)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_long_future.py 55 huge = 1L << 40000
56 mhuge = -huge
57 self.assertEqual(huge / huge, 1.0)
59 self.assertEqual(huge / mhuge, -1.0)
60 self.assertEqual(mhuge / huge, -1.0)
61 self.assertEqual(1 / huge, 0.0)
62 self.assertEqual(1L / huge, 0.0)
65 self.assertEqual((666 * huge + (huge >> 1)) / huge, 666.5
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_long_future.py 55 huge = 1L << 40000
56 mhuge = -huge
57 self.assertEqual(huge / huge, 1.0)
59 self.assertEqual(huge / mhuge, -1.0)
60 self.assertEqual(mhuge / huge, -1.0)
61 self.assertEqual(1 / huge, 0.0)
62 self.assertEqual(1L / huge, 0.0)
65 self.assertEqual((666 * huge + (huge >> 1)) / huge, 666.5
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_long_future.py 55 huge = 1L << 40000
56 mhuge = -huge
57 self.assertEqual(huge / huge, 1.0)
59 self.assertEqual(huge / mhuge, -1.0)
60 self.assertEqual(mhuge / huge, -1.0)
61 self.assertEqual(1 / huge, 0.0)
62 self.assertEqual(1L / huge, 0.0)
65 self.assertEqual((666 * huge + (huge >> 1)) / huge, 666.5
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_long_future.py 55 huge = 1L << 40000
56 mhuge = -huge
57 self.assertEqual(huge / huge, 1.0)
59 self.assertEqual(huge / mhuge, -1.0)
60 self.assertEqual(mhuge / huge, -1.0)
61 self.assertEqual(1 / huge, 0.0)
62 self.assertEqual(1L / huge, 0.0)
65 self.assertEqual((666 * huge + (huge >> 1)) / huge, 666.5
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue15039.go 21 const huge = string(1<<100)
22 if huge != fffd {
23 panic("huge != bad")
  /prebuilts/go/linux-x86/test/fixedbugs/
issue15039.go 21 const huge = string(1<<100)
22 if huge != fffd {
23 panic("huge != bad")

Completed in 918 milliseconds

1 2 3 4 5 6 7 8