/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 | 50 DBL_MAX_EXP = sys.float_info.max_exp variable 376 self.assertRaises(OverflowError, getargs_d, 1<<DBL_MAX_EXP) 377 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/language.support/support.limits/c.limits/ |
D | cfloat.pass.cpp | 112 #ifndef DBL_MAX_EXP 113 #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/depr/depr.c.headers/ |
D | float_h.pass.cpp | 112 #ifndef DBL_MAX_EXP 113 #error DBL_MAX_EXP not defined
|
/external/libcxx/test/std/language.support/support.limits/limits/numeric.limits.members/ |
D | max_exponent.pass.cpp | 56 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/python/cpython2/Lib/plat-beos5/ |
D | IN.py | 87 DBL_MAX_EXP = 1024 variable 93 LDBL_MAX_EXP = DBL_MAX_EXP
|
/external/libcxx/include/ |
D | cfloat | 49 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) 444 top_power = 2**DBL_MAX_EXP 838 self.check_truediv(671 * 12345 * 2**DBL_MAX_EXP, 12345) 846 DBL_MAX_EXP, DBL_MIN_EXP - DBL_MANT_DIG)
|
D | test_getargs2.py | 47 DBL_MAX_EXP = sys.float_info.max_exp variable 402 self.assertRaises(OverflowError, getargs_d, 1<<DBL_MAX_EXP) 403 self.assertRaises(OverflowError, getargs_d, -1<<DBL_MAX_EXP)
|
/external/python/cpython3/Objects/ |
D | floatobject.c | 94 SetIntFlag(DBL_MAX_EXP); in PyFloat_GetInfo() 1075 #define NDIGITS_MIN (-(int)((DBL_MAX_EXP + 1) * 0.30103)) in float___round___impl() 1388 LONG_MAX/2 + 1 - DBL_MAX_EXP)/4) in float_fromhex() 1439 if (top_exp > DBL_MAX_EXP) in float_fromhex() 1478 if (top_exp == DBL_MAX_EXP && in float_fromhex()
|
D | longobject.c | 2883 if ((x == -1.0 && PyErr_Occurred()) || exponent > DBL_MAX_EXP) { in PyLong_AsDouble() 3869 if (diff > DBL_MAX_EXP) in long_true_divide() 3963 if (shift + x_bits >= DBL_MAX_EXP && in long_true_divide() 3964 (shift + x_bits > DBL_MAX_EXP || dx == ldexp(1.0, (int)x_bits))) in long_true_divide()
|
/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 | 2206 #define NDIGITS_MIN (-(int)((DBL_MAX_EXP + 1) * 0.30103)) in builtin_round()
|
/external/python/cpython2/Objects/ |
D | floatobject.c | 120 SetIntFlag(DBL_MAX_EXP); in PyFloat_GetInfo() 1570 LONG_MAX/2 + 1 - DBL_MAX_EXP)/4) in float_fromhex() 1621 if (top_exp > DBL_MAX_EXP) in float_fromhex() 1660 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()
|
/external/python/cpython2/Doc/library/ |
D | sys.rst | 321 | :const:`max_exp` | DBL_MAX_EXP | maximum integer e such that ``radix**(e-1)`` is |
|