/third_party/musl/libc-test/src/math/ |
H A D | isless.c | 31 volatile double huge = DBL_MAX; in main() local 50 T(huge-1, huge, EQUAL); in main() 51 T(huge, huge*huge, LESS); in main() 78 T(huge*huge, huge*huge* in main() [all...] |
/third_party/jerryscript/jerry-libm/ |
H A D | scalbn.c | 37 #define huge 1.0e+300 macro 69 return huge * copysign (huge, x); in scalbn() 82 return huge * copysign (huge, x); /*overflow */ in scalbn() 98 #undef huge macro
|
H A D | floor.c | 40 #define huge 1.0e300 macro 55 if (huge + x > 0.0) /* return 0 * sign(x) if |x| < 1 */ in floor() 75 if (huge + x > 0.0) /* raise inexact flag */ in floor() 104 if (huge + x > 0.0) /* raise inexact flag */ in floor() 132 #undef huge macro
|
H A D | ceil.c | 40 #define huge 1.0e300 macro 55 if (huge + x > 0.0) /* return 0 * sign(x) if |x| < 1 */ in ceil() 76 if (huge + x > 0.0) /* raise inexact flag */ in ceil() 105 if (huge + x > 0.0) /* raise inexact flag */ in ceil() 133 #undef huge macro
|
H A D | pow.c | 95 #define huge 1.0e300 macro 271 /* |y| is huge */ in pow() 278 return (hy < 0) ? huge * huge : tiny * tiny; in pow() 282 return (hy > 0) ? huge * huge : tiny * tiny; in pow() 288 return (hy < 0) ? s * huge * huge : s * tiny * tiny; in pow() 292 return (hy > 0) ? s * huge * huge in pow() 454 #undef huge global() macro [all...] |
H A D | cosh.c | 45 * ln2ovft < x : cosh(x) := huge * huge (overflow) 54 #define huge 1.0e300 macro 108 return huge * huge; in cosh() 113 #undef huge macro
|
H A D | exp.c | 109 #define huge 1.0e+300 macro 147 return huge * huge; in exp() 175 if (huge + x > one) /* trigger inexact */ in exp() 211 #undef huge macro
|
H A D | atanh.c | 50 #define huge 1.0e+300 macro 71 if (ix < 0x3e300000 && (huge + x) > zero) in atanh() 100 #undef huge macro
|
H A D | asinh.c | 43 #define huge 1.0e+300 macro 60 if (huge + x > one) in asinh() 95 #undef huge macro
|
H A D | expm1.c | 125 #define huge 1.0e+300 macro 151 /* filter out huge and non-finite argument */ in expm1() 176 return huge * huge; in expm1() 295 #undef huge macro
|
H A D | atan.c | 80 #define huge 1.0e300 macro 109 if (huge + x > one) /* raise inexact */ in atan() 175 #undef huge macro
|
H A D | asin.c | 61 #define huge 1.000e+300 macro 98 if (huge + x > one) /* return x with inexact if x != 0 */ in asin() 141 #undef huge macro
|
/third_party/FreeBSD/lib/msun/ld128/ |
H A D | e_powl.c | 89 huge = 1.0e3000L, variable 263 /* |y| is huge. in powl() 272 return (hy < 0) ? huge * huge : tiny * tiny; in powl() 274 return (hy > 0) ? huge * huge : tiny * tiny; in powl() 278 return (hy < 0) ? huge * huge : tiny * tiny; in powl() 280 return (hy > 0) ? huge * huge in powl() [all...] |
H A D | s_expl.c | 45 huge = 0x1p10000L, variable 79 RETURNP(huge * huge); in expl() 224 RETURNP(huge * huge); in expm1l()
|
/third_party/node/deps/v8/src/base/ |
H A D | ieee754.cc | 347 * skip the part of the product that are known to be a huge integer ( 950 return log(x) + ln2; /* acosh(huge)=log(2x) */ in acosh() 994 huge = 1.000e+300, in asin() local 1025 if (huge + x > one) return x; /* return x with inexact if x!=0*/ in asin() 1071 huge = 1.00000000000000000000e+300; in asinh() local 1079 if (huge + x > one) return x; /* return x inexact except 0 */ in asinh() 1145 static const double one = 1.0, huge = 1.0e300; in atan() local 1164 if (huge + x > one) return x; /* raise inexact */ in atan() 1462 huge = 1.0e+300, in exp() local 1484 if (x > o_threshold) return huge * hug in exp() 1554 static const double one = 1.0, huge = 1e300; atanh() local 2225 static volatile double huge = 1.0e+300; expm1() local 2549 static volatile double huge = 1.0e+300; cosh() local 2644 huge = 1.0e300, tiny = 1.0e-300, pow() local 2977 static const double one = 1.0, two = 2.0, huge = 1.0e300; tanh() local [all...] |
/third_party/musl/src/math/ |
H A D | powl.c | 187 static const long double huge = 0x1p10000L; variable 238 return huge * huge; in powl() 379 return huge * huge; /* overflow */ in powl() 492 return huge * huge; /* overflow */ in powil()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
H A D | charconv_benchmark.cc | 110 std::string huge(200, '3'); in BM_Strtod_HugeMantissa() 111 const char* num = huge.c_str(); in BM_Strtod_HugeMantissa() 120 std::string huge(200, '3'); in BM_Absl_HugeMantissa() 121 const char* num = huge.c_str(); in BM_Absl_HugeMantissa()
|
/third_party/python/Lib/test/ |
H A D | test_long.py | 490 huge = 1 << 30000 491 mhuge = -huge 492 namespace = {'huge': huge, 'mhuge': mhuge, 'shuge': shuge, 'math': math} 493 for test in ["float(huge)", "float(mhuge)", 494 "complex(huge)", "complex(mhuge)", 495 "complex(huge, 1)", "complex(mhuge, 1)", 496 "complex(1, huge)", "complex(1, mhuge)", 497 "1. + huge", "huge [all...] |
/third_party/FreeBSD/lib/msun/src/ |
H A D | e_coshl.c | 38 static const volatile long double huge = 0x1p10000L, tiny = 0x1p-10000L; variable 129 RETURNI(huge*huge); in coshl()
|
H A D | s_asinhl.c | 53 huge= 1.00000000000000000000e+300; variable 77 if (huge + x > one) RETURNI(x); /* return x inexact except 0 */ in asinhl()
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
H A D | powl.c | 187 static const long double huge = 0x1p10000L; variable 371 return huge * huge; /* overflow */ in powl() 484 return huge * huge; /* overflow */ in powil()
|
/third_party/musl/src/complex/ |
H A D | ccoshf.c | 33 static const float huge = 0x1p127; variable 66 h = huge * x; in ccoshf()
|
H A D | csinh.c | 39 static const double huge = 0x1p1023; variable 73 h = huge * x; in csinh()
|
H A D | csinhf.c | 33 static const float huge = 0x1p127; variable 66 h = huge * x; in csinhf()
|
H A D | ccosh.c | 39 static const double huge = 0x1p1023; variable 73 h = huge * x; in ccosh()
|