/external/libcxx/test/std/language.support/support.limits/limits/numeric.limits.members/ |
D | min_exponent.pass.cpp | 23 static_assert(std::numeric_limits<T>::min_exponent == expected, "min_exponent test 1"); in test() 24 static_assert(std::numeric_limits<const T>::min_exponent == expected, "min_exponent test 2"); in test() 25 static_assert(std::numeric_limits<volatile T>::min_exponent == expected, "min_exponent test 3"); in test() 26 …static_assert(std::numeric_limits<const volatile T>::min_exponent == expected, "min_exponent test … in test()
|
D | const_data_members.pass.cpp | 54 test(std::numeric_limits<type>::min_exponent); \
|
/external/v8/src/ |
D | cached-powers.cc | 126 int min_exponent, in GetCachedPowerForBinaryExponentRange() argument 133 double k = std::ceil((min_exponent + kQ - 1) * kD_1_LOG2_10); in GetCachedPowerForBinaryExponentRange() 139 DCHECK(min_exponent <= cached_power.binary_exponent); in GetCachedPowerForBinaryExponentRange()
|
D | cached-powers.h | 25 static void GetCachedPowerForBinaryExponentRange(int min_exponent,
|
D | bignum.cc | 624 int min_exponent = Min(Min(a.exponent_, b.exponent_), c.exponent_); in PlusCompare() local 625 for (int i = c.BigitLength() - 1; i >= min_exponent; --i) { in PlusCompare()
|
/external/icu/icu4c/source/i18n/ |
D | double-conversion-cached-powers.cpp | 156 int min_exponent, in GetCachedPowerForBinaryExponentRange() argument 161 double k = ceil((min_exponent + kQ - 1) * kD_1_LOG2_10); in GetCachedPowerForBinaryExponentRange() 167 ASSERT(min_exponent <= cached_power.binary_exponent); in GetCachedPowerForBinaryExponentRange()
|
D | double-conversion-cached-powers.h | 61 static void GetCachedPowerForBinaryExponentRange(int min_exponent,
|
D | double-conversion-bignum.cpp | 668 int min_exponent = Min(Min(a.exponent_, b.exponent_), c.exponent_); in PlusCompare() local 669 for (int i = c.BigitLength() - 1; i >= min_exponent; --i) { in PlusCompare()
|
/external/libcxx/include/ |
D | limits | 39 static constexpr int min_exponent = 0; 164 static _LIBCPP_CONSTEXPR const int min_exponent = 0; 224 static _LIBCPP_CONSTEXPR const int min_exponent = 0; 277 static _LIBCPP_CONSTEXPR const int min_exponent = 0; 323 static _LIBCPP_CONSTEXPR const int min_exponent = __FLT_MIN_EXP__; 369 static _LIBCPP_CONSTEXPR const int min_exponent = __DBL_MIN_EXP__; 415 static _LIBCPP_CONSTEXPR const int min_exponent = __LDBL_MIN_EXP__; 465 static _LIBCPP_CONSTEXPR const int min_exponent = __base::min_exponent; 506 _LIBCPP_CONSTEXPR const int numeric_limits<_Tp>::min_exponent; 558 static _LIBCPP_CONSTEXPR const int min_exponent = __base::min_exponent; [all …]
|
/external/deqp-deps/glslang/SPIRV/ |
D | hex_float.h | 322 static const int_type min_exponent = -static_cast<int_type>(exponent_bias); 358 if (exp == min_exponent) { // We are in denorm land. 373 for (int_type i = unbiased_exponent; i <= min_exponent; ++i) { 400 if (exponent <= min_exponent) { 408 while (exponent < min_exponent) { 413 if (exponent == min_exponent) { 585 if (exponent == min_exponent) {
|
/external/deqp-deps/SPIRV-Tools/source/util/ |
D | hex_float.h | 355 static const int_type min_exponent = -static_cast<int_type>(exponent_bias); 390 if (exp == min_exponent) { // We are in denorm land. 405 for (int_type i = unbiased_exponent; i <= min_exponent; ++i) { 432 if (exponent <= min_exponent) { 440 while (exponent < min_exponent) { 445 if (exponent == min_exponent) { 655 if (exponent == min_exponent) {
|
/external/swiftshader/third_party/SPIRV-Tools/source/util/ |
D | hex_float.h | 355 static const int_type min_exponent = -static_cast<int_type>(exponent_bias); 390 if (exp == min_exponent) { // We are in denorm land. 405 for (int_type i = unbiased_exponent; i <= min_exponent; ++i) { 432 if (exponent <= min_exponent) { 440 while (exponent < min_exponent) { 445 if (exponent == min_exponent) { 655 if (exponent == min_exponent) {
|
/external/libcxx/test/std/language.support/support.limits/limits/numeric.limits/ |
D | default.pass.cpp | 49 static_assert(std::numeric_limits<A>::min_exponent == 0, in main()
|
/external/eigen/Eigen/src/Core/ |
D | StableNorm.h | 78 iemin = std::numeric_limits<RealScalar>::min_exponent; // minimum exponent in blueNorm_impl()
|
/external/deqp/framework/common/ |
D | tcuFloatFormat.cpp | 277 return FloatFormat(Limits::min_exponent - 1, // These have a built-in offset of one in nativeFormat()
|
/external/eigen/test/ |
D | stable_norm.cpp | 36 iemin = std::numeric_limits<RealScalar>::min_exponent; // minimum exponent in stable_norm()
|
/external/u-boot/drivers/usb/host/ |
D | xhci.c | 264 unsigned int min_exponent, in xhci_microframes_to_exponent() argument 270 interval = clamp_val(interval, min_exponent, max_exponent); in xhci_microframes_to_exponent()
|
/external/eigen/bench/ |
D | bench_norm.cpp | 117 iemin = std::numeric_limits<Scalar>::min_exponent; // minimum exponent in pblueNorm()
|
/external/eigen/Eigen/src/Core/arch/CUDA/ |
D | Half.h | 499 static const int min_exponent = -13;
|
/external/eigen/unsupported/test/mpreal/ |
D | mpreal.h | 3037 static const int min_exponent = MPFR_EMIN_DEFAULT;
|