Searched refs:min_exponent (Results 1 – 12 of 12) sorted by relevance
/external/libcxx/test/std/language.support/support.limits/limits/numeric.limits.members/ |
D | min_exponent.pass.cpp | 21 static_assert(std::numeric_limits<T>::min_exponent == expected, "min_exponent test 1"); in test() 22 static_assert(std::numeric_limits<const T>::min_exponent == expected, "min_exponent test 2"); in test() 23 static_assert(std::numeric_limits<volatile T>::min_exponent == expected, "min_exponent test 3"); in test() 24 …static_assert(std::numeric_limits<const volatile T>::min_exponent == expected, "min_exponent test … in test()
|
D | const_data_members.pass.cpp | 52 test(std::numeric_limits<type>::min_exponent); \
|
/external/v8/src/ |
D | cached-powers.cc | 125 int min_exponent, in GetCachedPowerForBinaryExponentRange() argument 132 double k = std::ceil((min_exponent + kQ - 1) * kD_1_LOG2_10); in GetCachedPowerForBinaryExponentRange() 138 DCHECK(min_exponent <= cached_power.binary_exponent); in GetCachedPowerForBinaryExponentRange()
|
D | cached-powers.h | 25 static void GetCachedPowerForBinaryExponentRange(int min_exponent,
|
D | bignum.cc | 632 int min_exponent = Min(Min(a.exponent_, b.exponent_), c.exponent_); in PlusCompare() local 633 for (int i = c.BigitLength() - 1; i >= min_exponent; --i) { in PlusCompare()
|
/external/libcxx/include/ |
D | limits | 39 static constexpr int min_exponent = 0; 161 static _LIBCPP_CONSTEXPR const int min_exponent = 0; 221 static _LIBCPP_CONSTEXPR const int min_exponent = 0; 273 static _LIBCPP_CONSTEXPR const int min_exponent = 0; 319 static _LIBCPP_CONSTEXPR const int min_exponent = __FLT_MIN_EXP__; 365 static _LIBCPP_CONSTEXPR const int min_exponent = __DBL_MIN_EXP__; 411 static _LIBCPP_CONSTEXPR const int min_exponent = __LDBL_MIN_EXP__; 461 static _LIBCPP_CONSTEXPR const int min_exponent = __base::min_exponent; 502 _LIBCPP_CONSTEXPR const int numeric_limits<_Tp>::min_exponent; 554 static _LIBCPP_CONSTEXPR const int min_exponent = __base::min_exponent; [all …]
|
/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/test/ |
D | stable_norm.cpp | 42 iemin = std::numeric_limits<RealScalar>::min_exponent; // minimum exponent in stable_norm()
|
/external/eigen/Eigen/src/Core/ |
D | StableNorm.h | 73 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/bench/ |
D | bench_norm.cpp | 107 iemin = std::numeric_limits<Scalar>::min_exponent; // minimum exponent in pblueNorm()
|
/external/eigen/unsupported/test/mpreal/ |
D | mpreal.h | 3006 static const int min_exponent = MPFR_EMIN_DEFAULT;
|