/external/libcxx/test/language.support/support.limits/limits/numeric.limits.members/ |
D | max_exponent.pass.cpp | 21 static_assert(std::numeric_limits<T>::max_exponent == expected, "max_exponent test 1"); in test() 22 static_assert(std::numeric_limits<const T>::max_exponent == expected, "max_exponent test 2"); in test() 23 static_assert(std::numeric_limits<volatile T>::max_exponent == expected, "max_exponent test 3"); in test() 24 …static_assert(std::numeric_limits<const volatile T>::max_exponent == expected, "max_exponent test … in test()
|
D | Android.mk | 107 test_name := language.support/support.limits/limits/numeric.limits.members/max_exponent 108 test_src := max_exponent.pass.cpp
|
D | const_data_members.pass.cpp | 54 test(std::numeric_limits<type>::max_exponent); \
|
/external/aac/libAACdec/src/ |
D | aacdec_drc.cpp | 860 INT max_exponent; in aacDecoder_drcApply() local 1005 max_exponent = 0; in aacDecoder_drcApply() 1008 max_exponent = fixMax(max_exponent, fact_exponent[band]); in aacDecoder_drcApply() 1018 res = fixMin(res, max_exponent); in aacDecoder_drcApply() 1019 max_exponent -= res; in aacDecoder_drcApply() 1029 if (fact_exponent[band] < max_exponent) { in aacDecoder_drcApply() 1030 fact_mantissa[band] >>= max_exponent - fact_exponent[band]; in aacDecoder_drcApply() 1036 if (max_exponent != 1) { in aacDecoder_drcApply() 1052 max_exponent -= 1; in aacDecoder_drcApply() 1068 if (max_exponent > 0) { in aacDecoder_drcApply() [all …]
|
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/ |
D | double-conversion.cc | 570 const int max_exponent = INT_MAX / 2; in StringToDouble() local 571 ASSERT(-max_exponent / 2 <= exponent && exponent <= max_exponent / 2); in StringToDouble() 576 if (num >= max_exponent / 10 in StringToDouble() 577 && !(num == max_exponent / 10 && digit <= max_exponent % 10)) { in StringToDouble() 578 num = max_exponent; in StringToDouble()
|
D | cached-powers.h | 50 int max_exponent,
|
D | cached-powers.cc | 157 int max_exponent, in GetCachedPowerForBinaryExponentRange() argument 171 ASSERT(cached_power.binary_exponent <= max_exponent); in GetCachedPowerForBinaryExponentRange()
|
/external/chromium_org/third_party/webrtc/base/ |
D | safe_conversions_impl.h | 52 DstLimits::max_exponent : 55 SrcLimits::max_exponent : 73 DstLimits::max_exponent : 166 SrcLimits::max_exponent :
|
/external/chromium_org/v8/src/ |
D | conversions-inl.h | 646 const int max_exponent = INT_MAX / 2; in InternalStringToDouble() local 647 DCHECK(-max_exponent / 2 <= exponent && exponent <= max_exponent / 2); in InternalStringToDouble() 652 if (num >= max_exponent / 10 in InternalStringToDouble() 653 && !(num == max_exponent / 10 && digit <= max_exponent % 10)) { in InternalStringToDouble() 654 num = max_exponent; in InternalStringToDouble()
|
D | cached-powers.h | 26 int max_exponent,
|
D | cached-powers.cc | 126 int max_exponent, in GetCachedPowerForBinaryExponentRange() argument 139 DCHECK(cached_power.binary_exponent <= max_exponent); in GetCachedPowerForBinaryExponentRange()
|
/external/libcxx/include/ |
D | limits | 41 static constexpr int max_exponent = 0; 163 static _LIBCPP_CONSTEXPR const int max_exponent = 0; 223 static _LIBCPP_CONSTEXPR const int max_exponent = 0; 275 static _LIBCPP_CONSTEXPR const int max_exponent = 0; 321 static _LIBCPP_CONSTEXPR const int max_exponent = __FLT_MAX_EXP__; 367 static _LIBCPP_CONSTEXPR const int max_exponent = __DBL_MAX_EXP__; 413 static _LIBCPP_CONSTEXPR const int max_exponent = __LDBL_MAX_EXP__; 463 static _LIBCPP_CONSTEXPR const int max_exponent = __base::max_exponent; 506 _LIBCPP_CONSTEXPR const int numeric_limits<_Tp>::max_exponent; 556 static _LIBCPP_CONSTEXPR const int max_exponent = __base::max_exponent; [all …]
|
/external/chromium_org/v8/test/cctest/ |
D | test-code-stubs.cc | 57 uint32_t max_exponent = in ConvertDToICVersion() local 59 if (unsigned_exponent >= max_exponent) { in ConvertDToICVersion()
|
/external/stlport/stlport/stl/ |
D | _limits.c | 48 __declare_numeric_base_member(int, max_exponent); 121 __declare_float_limits_member(int, max_exponent);
|
D | _limits.h | 70 _STLP_STATIC_CONSTANT(int, max_exponent = 0); 150 _STLP_STATIC_CONSTANT(int, max_exponent = __MaxExp);
|
/external/libcxx/test/language.support/support.limits/limits/numeric.limits/ |
D | default.pass.cpp | 53 static_assert(std::numeric_limits<A>::max_exponent == 0, in main()
|
/external/chromium_org/base/numerics/ |
D | safe_conversions_impl.h | 22 ? std::numeric_limits<NumericType>::max_exponent
|
/external/eigen/test/ |
D | stable_norm.cpp | 48 iemax = std::numeric_limits<RealScalar>::max_exponent; // maximum exponent in stable_norm()
|
/external/chromium_org/v8/src/base/ |
D | safe_conversions_impl.h | 26 ? std::numeric_limits<NumericType>::max_exponent
|
/external/eigen/Eigen/src/Core/ |
D | StableNorm.h | 74 iemax = std::numeric_limits<RealScalar>::max_exponent; // maximum exponent in blueNorm_impl()
|
/external/stlport/src/ |
D | num_get_float.cpp | 464 if (bexp > limits::max_exponent) { /* overflow */ in _Stl_atod() 571 if (bexp > limits::max_exponent) { /* overflow */ in _Stl_atodT()
|
/external/deqp/framework/common/ |
D | tcuFloatFormat.cpp | 278 Limits::max_exponent - 1, in nativeFormat()
|
/external/eigen/bench/ |
D | bench_norm.cpp | 108 iemax = std::numeric_limits<Scalar>::max_exponent; // maximum exponent in pblueNorm()
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
D | SVGParserUtilities.cpp | 125 if (!isValidRange(exponent) || exponent > std::numeric_limits<FloatType>::max_exponent) in genericParseNumber()
|
/external/eigen/unsupported/test/mpreal/ |
D | mpreal.h | 2895 static const int max_exponent = MPFR_EMAX_DEFAULT;
|