Home
last modified time | relevance | path

Searched refs:huge (Results 1 – 25 of 27) sorted by relevance

12

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_long_future.py55 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)
67 self.assertEqual((666 * huge + (huge >> 1)) / mhuge, -666.5)
68 self.assertEqual((666 * mhuge + (mhuge >> 1)) / huge, -666.5)
[all …]
Dmath_testcases.txt81 -- huge values should all go to +/-1, depending on sign
143 -- huge values
Dtest_long.py747 huge = 1L << 30000
748 mhuge = -huge
749 namespace = {'huge': huge, 'mhuge': mhuge, 'shuge': shuge, 'math': math}
/device/linaro/bootloader/edk2/StdLib/LibC/Math/
Ds_scalbn.c31 huge = 1.0e+300, variable
49 if (k > 0x7fe) return huge*copysign(huge,x); /* overflow */ in scalbn()
54 return huge*copysign(huge,x); /*overflow*/ in scalbn()
De_pow.c92 huge = 1.0e300, variable
208 if(ix<=0x3fefffff) return (hy<0)? huge*huge:tiny*tiny; in __ieee754_pow()
209 if(ix>=0x3ff00000) return (hy>0)? huge*huge:tiny*tiny; in __ieee754_pow()
212 if(ix<0x3fefffff) return (hy<0)? s*huge*huge:s*tiny*tiny; in __ieee754_pow()
213 if(ix>0x3ff00000) return (hy>0)? s*huge*huge:s*tiny*tiny; in __ieee754_pow()
282 return s*huge*huge; /* overflow */ in __ieee754_pow()
284 if(p_l+ovt>z-p_h) return s*huge*huge; /* overflow */ in __ieee754_pow()
Ds_ceil.c30 static const double huge = 1.0e300; variable
42 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */ in ceil()
49 if(huge+x>0.0) { /* raise inexact flag */ in ceil()
60 if(huge+x>0.0) { /* raise inexact flag */ in ceil()
Ds_floor.c30 static const double huge = 1.0e300; variable
41 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */ in floor()
49 if(huge+x>0.0) { /* raise inexact flag */ in floor()
60 if(huge+x>0.0) { /* raise inexact flag */ in floor()
Ds_expm1.c123 huge = 1.0e+300, variable
159 if(x > o_threshold) return huge*huge; /* overflow */ in expm1()
184 t = huge+x; /* return x with inexact flags when x!=0 */ in expm1()
185 return x - (t-(huge+x)); in expm1()
De_exp.c92 huge = 1.0e+300, variable
130 if(x > o_threshold) return huge*huge; /* overflow */ in __ieee754_exp()
147 if(huge+x>one) return one+x;/* trigger inexact */ in __ieee754_exp()
De_cosh.c47 static const double one = 1.0, half=0.5, huge = 1.0e300; variable
90 return huge*huge; in __ieee754_cosh()
Ds_atan.c71 huge = 1.0e300; variable
91 if(huge+x>one) return x; /* raise inexact */ in atan()
De_asin.c59 huge = 1.000e+300, variable
93 if(huge+x>one) return x;/* return x with inexact if x!=0*/ in __ieee754_asin()
/device/google/contexthub/firmware/lib/libm/
Dsf_scalbn.c33 huge = 1.0e+30, variable
60 if (k > FLT_LARGEST_EXP) return huge*copysignf(huge,x); /* overflow */
65 return huge*copysignf(huge,x); /*overflow*/
Dsf_floor.c28 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 */
Def_pow.c34 huge = 1.0e30, variable
138 if(ix<0x3f7ffff8) return (hy<0)? huge*huge:tiny*tiny;
139 if(ix>0x3f800007) return (hy>0)? huge*huge:tiny*tiny;
217 return s*huge*huge; /* overflow */
219 if(p_l+ovt>z-p_h) return s*huge*huge; /* overflow */
Def_exp.c29 huge = 1.0e+30, variable
63 return huge*huge; /* overflow */
80 if(huge+x>one) return one+x;/* trigger inexact */
Dsf_atan.c65 huge = 1.0e30; variable
86 if(huge+x>one) return x; /* raise inexact */
Def_asin.c24 huge = 1.000e+30, variable
58 if(huge+x>one) return x;/* return x with inexact if x!=0*/
/device/google/contexthub/firmware/external/freebsd/lib/msun/src/
De_expf.c42 huge = 1.0e+30, variable
62 if(x > o_threshold) return huge*huge; /* overflow */ in __ieee754_expf()
79 if(huge+x>one) return one+x;/* trigger inexact */ in __ieee754_expf()
Ds_atanf.c46 huge = 1.0e30; variable
63 if(huge+x>one) return x; /* raise inexact */ in atanf()
/device/linaro/bootloader/edk2/StdLib/Efi/StdLib/etc/
Dprotocols7 # If you need a huge list of used numbers please install the nmap package.
/device/linaro/hikey/
Dinit.common.rc7 # disable transparent huge pages
/device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/
Dstrtodg.c617 goto huge; in strtodg()
988 huge: in strtodg()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dlistsort.txt410 repay their cost if the data is random. But they can win huge in all of
478 comparisons needed to find one from O(B) to O(log B) is a huge win.
520 discovered that in only 3 compares, and that's a huge loss! Really. It's
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dlistsort.txt413 repay their cost if the data is random. But they can win huge in all of
481 comparisons needed to find one from O(B) to O(log B) is a huge win.
523 discovered that in only 3 compares, and that's a huge loss! Really. It's

12