/external/clang/test/Headers/ |
D | float.c | 149 #ifndef DBL_MAX_EXP 151 #elif DBL_MAX_EXP < 1 159 #if ((FLT_MAX_EXP > DBL_MAX_EXP) || (DBL_MAX_EXP > LDBL_MAX_EXP)) 214 _Static_assert(DBL_MAX_EXP == __DBL_MAX_EXP__, "");
|
/external/python/cpython2/Lib/test/ |
D | test_long_future.py | 18 DBL_MAX_EXP = sys.float_info.max_exp variable 21 DBL_MIN_OVERFLOW = 2**DBL_MAX_EXP - 2**(DBL_MAX_EXP - DBL_MANT_DIG - 1) 138 self.check_truediv(671 * 12345 * 2**DBL_MAX_EXP, 12345) 146 DBL_MAX_EXP, DBL_MIN_EXP - DBL_MANT_DIG)
|
D | test_getargs2.py | 49 DBL_MAX_EXP = sys.float_info.max_exp variable 375 self.assertRaises(OverflowError, getargs_d, 1<<DBL_MAX_EXP) 376 self.assertRaises(OverflowError, getargs_d, -1<<DBL_MAX_EXP)
|
D | test_long.py | 722 DBL_MAX_EXP = sys.float_info.max_exp 752 top_power = 2**DBL_MAX_EXP
|
/external/libcxx/test/std/depr/depr.c.headers/ |
D | float_h.pass.cpp | 82 #ifndef DBL_MAX_EXP 83 #error DBL_MAX_EXP not defined
|
/external/libcxx/test/std/language.support/support.limits/c.limits/ |
D | cfloat.pass.cpp | 82 #ifndef DBL_MAX_EXP 83 #error DBL_MAX_EXP not defined
|
/external/clang/lib/Headers/ |
D | float.h | 55 # undef DBL_MAX_EXP 106 #define DBL_MAX_EXP __DBL_MAX_EXP__ macro
|
/external/libcxx/test/std/language.support/support.limits/limits/numeric.limits.members/ |
D | max_exponent.pass.cpp | 51 test<double, DBL_MAX_EXP>(); in main()
|
/external/libcxx/include/support/win32/ |
D | limits_msvc_win32.h | 46 #define __DBL_MAX_EXP__ DBL_MAX_EXP
|
/external/libcxx/include/ |
D | cfloat | 42 DBL_MAX_EXP
|
/external/python/cpython2/Lib/plat-beos5/ |
D | IN.py | 87 DBL_MAX_EXP = 1024 variable 93 LDBL_MAX_EXP = DBL_MAX_EXP
|
/external/libcxx/include/support/ibm/ |
D | limits.h | 70 #define __DBL_MAX_EXP__ DBL_MAX_EXP
|
/external/python/cpython3/Lib/test/ |
D | test_long.py | 32 DBL_MAX_EXP = sys.float_info.max_exp variable 35 DBL_MIN_OVERFLOW = 2**DBL_MAX_EXP - 2**(DBL_MAX_EXP - DBL_MANT_DIG - 1) 440 top_power = 2**DBL_MAX_EXP 831 self.check_truediv(671 * 12345 * 2**DBL_MAX_EXP, 12345) 839 DBL_MAX_EXP, DBL_MIN_EXP - DBL_MANT_DIG)
|
D | test_getargs2.py | 46 DBL_MAX_EXP = sys.float_info.max_exp variable 395 self.assertRaises(OverflowError, getargs_d, 1<<DBL_MAX_EXP) 396 self.assertRaises(OverflowError, getargs_d, -1<<DBL_MAX_EXP)
|
/external/python/cpython3/Objects/ |
D | floatobject.c | 89 SetIntFlag(DBL_MAX_EXP); in PyFloat_GetInfo() 1054 #define NDIGITS_MIN (-(int)((DBL_MAX_EXP + 1) * 0.30103)) in float_round() 1335 LONG_MAX/2 + 1 - DBL_MAX_EXP)/4) in float_fromhex() 1386 if (top_exp > DBL_MAX_EXP) in float_fromhex() 1425 if (top_exp == DBL_MAX_EXP && in float_fromhex()
|
D | longobject.c | 2872 if ((x == -1.0 && PyErr_Occurred()) || exponent > DBL_MAX_EXP) { in PyLong_AsDouble() 3895 if (diff > DBL_MAX_EXP) in long_true_divide() 3989 if (shift + x_bits >= DBL_MAX_EXP && in long_true_divide() 3990 (shift + x_bits > DBL_MAX_EXP || dx == ldexp(1.0, (int)x_bits))) in long_true_divide()
|
/external/syslinux/com32/lua/src/ |
D | llimits.h | 285 n = l_mathop(frexp)(n, &e) * (lua_Number)(INT_MAX - DBL_MAX_EXP); \
|
/external/python/cpython3/Python/ |
D | dtoa.c | 273 #define Big0 (Frac_mask1 | Exp_msk1*(DBL_MAX_EXP+Bias-1)) 1684 > Exp_msk1*(DBL_MAX_EXP+Bias-P)) in _Py_dg_strtod() 1686 if (z > Exp_msk1*(DBL_MAX_EXP+Bias-1-P)) { in _Py_dg_strtod() 2089 if (y == Exp_msk1*(DBL_MAX_EXP+Bias-1)) { in _Py_dg_strtod() 2095 Exp_msk1*(DBL_MAX_EXP+Bias-P)) { in _Py_dg_strtod()
|
/external/python/cpython2/Python/ |
D | dtoa.c | 282 #define Big0 (Frac_mask1 | Exp_msk1*(DBL_MAX_EXP+Bias-1)) 1757 > Exp_msk1*(DBL_MAX_EXP+Bias-P)) in _Py_dg_strtod() 1759 if (z > Exp_msk1*(DBL_MAX_EXP+Bias-1-P)) { in _Py_dg_strtod() 2162 if (y == Exp_msk1*(DBL_MAX_EXP+Bias-1)) { in _Py_dg_strtod() 2168 Exp_msk1*(DBL_MAX_EXP+Bias-P)) { in _Py_dg_strtod()
|
D | bltinmodule.c | 2205 #define NDIGITS_MIN (-(int)((DBL_MAX_EXP + 1) * 0.30103)) in builtin_round()
|
/external/python/cpython2/Objects/ |
D | floatobject.c | 121 SetIntFlag(DBL_MAX_EXP); in PyFloat_GetInfo() 1571 LONG_MAX/2 + 1 - DBL_MAX_EXP)/4) in float_fromhex() 1622 if (top_exp > DBL_MAX_EXP) in float_fromhex() 1661 if (top_exp == DBL_MAX_EXP && in float_fromhex()
|
D | longobject.c | 2340 if ((x == -1.0 && PyErr_Occurred()) || exponent > DBL_MAX_EXP) { in PyLong_AsDouble() 3235 if (diff > DBL_MAX_EXP) in long_true_divide() 3329 if (shift + x_bits >= DBL_MAX_EXP && in long_true_divide() 3330 (shift + x_bits > DBL_MAX_EXP || dx == ldexp(1.0, (int)x_bits))) in long_true_divide()
|
/external/libxml2/ |
D | trionan.c | 106 #if (FLT_RADIX == 2) && (DBL_MAX_EXP == 1024) && (DBL_MANT_DIG == 53)
|
/external/e2fsprogs/intl/ |
D | vasnprintf.c | 425 (unsigned int) (DBL_MAX_EXP in VASNPRINTF()
|
/external/libpng/contrib/libtests/ |
D | tarith.c | 246 int exponent = precision % (DBL_MAX_EXP - DBL_MIN_EXP) + DBL_MIN_EXP; in validation_ascii_to_fp()
|