/external/libcxx/test/std/language.support/support.limits/limits/numeric.limits.members/ |
D | max_exponent.pass.cpp | 23 static_assert(std::numeric_limits<T>::max_exponent == expected, "max_exponent test 1"); in test() 24 static_assert(std::numeric_limits<const T>::max_exponent == expected, "max_exponent test 2"); in test() 25 static_assert(std::numeric_limits<volatile T>::max_exponent == expected, "max_exponent test 3"); in test() 26 …static_assert(std::numeric_limits<const volatile T>::max_exponent == expected, "max_exponent test … in test()
|
D | const_data_members.pass.cpp | 56 test(std::numeric_limits<type>::max_exponent); \
|
/external/aac/libAACdec/src/ |
D | aacdec_drc.cpp | 845 INT max_exponent; in aacDecoder_drcApply() local 982 max_exponent = 0; in aacDecoder_drcApply() 985 max_exponent = fixMax(max_exponent, fact_exponent[band]); in aacDecoder_drcApply() 996 res = fixMin(res, max_exponent); in aacDecoder_drcApply() 997 max_exponent -= res; in aacDecoder_drcApply() 1007 if (fact_exponent[band] < max_exponent) { in aacDecoder_drcApply() 1008 fact_mantissa[band] >>= max_exponent - fact_exponent[band]; in aacDecoder_drcApply() 1014 if (max_exponent != 1) { in aacDecoder_drcApply() 1030 max_exponent -= 1; in aacDecoder_drcApply() 1046 if (max_exponent > 0) { in aacDecoder_drcApply() [all …]
|
/external/webrtc/webrtc/base/ |
D | safe_conversions_impl.h | 52 DstLimits::max_exponent : 55 SrcLimits::max_exponent : 73 DstLimits::max_exponent : 166 SrcLimits::max_exponent :
|
/external/icu/icu4c/source/i18n/ |
D | double-conversion-cached-powers.cpp | 157 int max_exponent, in GetCachedPowerForBinaryExponentRange() argument 168 (void) max_exponent; // Mark variable as used. in GetCachedPowerForBinaryExponentRange() 169 ASSERT(cached_power.binary_exponent <= max_exponent); in GetCachedPowerForBinaryExponentRange()
|
D | double-conversion.cpp | 901 const int max_exponent = INT_MAX / 2; in StringToIeee() local 902 ASSERT(-max_exponent / 2 <= exponent && exponent <= max_exponent / 2); in StringToIeee() 907 if (num >= max_exponent / 10 in StringToIeee() 908 && !(num == max_exponent / 10 && digit <= max_exponent % 10)) { in StringToIeee() 909 num = max_exponent; in StringToIeee()
|
D | double-conversion-cached-powers.h | 62 int max_exponent,
|
/external/libcxx/include/ |
D | limits | 41 static constexpr int max_exponent = 0; 166 static _LIBCPP_CONSTEXPR const int max_exponent = 0; 226 static _LIBCPP_CONSTEXPR const int max_exponent = 0; 279 static _LIBCPP_CONSTEXPR const int max_exponent = 0; 325 static _LIBCPP_CONSTEXPR const int max_exponent = __FLT_MAX_EXP__; 371 static _LIBCPP_CONSTEXPR const int max_exponent = __DBL_MAX_EXP__; 417 static _LIBCPP_CONSTEXPR const int max_exponent = __LDBL_MAX_EXP__; 467 static _LIBCPP_CONSTEXPR const int max_exponent = __base::max_exponent; 510 _LIBCPP_CONSTEXPR const int numeric_limits<_Tp>::max_exponent; 560 static _LIBCPP_CONSTEXPR const int max_exponent = __base::max_exponent; [all …]
|
/external/v8/src/ |
D | cached-powers.cc | 127 int max_exponent, in GetCachedPowerForBinaryExponentRange() argument 140 DCHECK(cached_power.binary_exponent <= max_exponent); in GetCachedPowerForBinaryExponentRange()
|
D | cached-powers.h | 26 int max_exponent,
|
D | conversions.cc | 772 const int max_exponent = INT_MAX / 2; in InternalStringToDouble() local 773 DCHECK(-max_exponent / 2 <= exponent && exponent <= max_exponent / 2); in InternalStringToDouble() 778 if (num >= max_exponent / 10 && in InternalStringToDouble() 779 !(num == max_exponent / 10 && digit <= max_exponent % 10)) { in InternalStringToDouble() 780 num = max_exponent; in InternalStringToDouble()
|
/external/tensorflow/tensorflow/core/lib/math/ |
D | math_util_test.cc | 251 void TestFloatIPow(const int max_exponent, const T start, const T end, in TestFloatIPow() argument 254 for (int i = 0; i < max_exponent; ++i) { in TestFloatIPow()
|
/external/deqp-deps/glslang/SPIRV/ |
D | hex_float.h | 319 static const int_type max_exponent = 1011 const int_type max_exponent = 1028 if (exponent > max_exponent) { 1029 exponent = max_exponent;
|
/external/libcxx/test/std/language.support/support.limits/limits/numeric.limits/ |
D | default.pass.cpp | 53 static_assert(std::numeric_limits<A>::max_exponent == 0, in main()
|
/external/deqp-deps/SPIRV-Tools/source/util/ |
D | hex_float.h | 352 static const int_type max_exponent = 1081 const int_type max_exponent = 1098 if (exponent > max_exponent) { 1099 exponent = max_exponent;
|
/external/swiftshader/third_party/SPIRV-Tools/source/util/ |
D | hex_float.h | 352 static const int_type max_exponent = 1081 const int_type max_exponent = 1098 if (exponent > max_exponent) { 1099 exponent = max_exponent;
|
/external/v8/src/base/ |
D | safe_conversions_impl.h | 26 ? std::numeric_limits<NumericType>::max_exponent
|
/external/eigen/Eigen/src/Core/ |
D | StableNorm.h | 79 iemax = std::numeric_limits<RealScalar>::max_exponent; // maximum exponent in blueNorm_impl()
|
/external/deqp/framework/common/ |
D | tcuFloatFormat.cpp | 278 Limits::max_exponent - 1, in nativeFormat()
|
/external/eigen/test/ |
D | stable_norm.cpp | 37 iemax = std::numeric_limits<RealScalar>::max_exponent; // maximum exponent in stable_norm()
|
/external/u-boot/drivers/usb/host/ |
D | xhci.c | 265 unsigned int max_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 | 118 iemax = std::numeric_limits<Scalar>::max_exponent; // maximum exponent in pblueNorm()
|
/external/eigen/Eigen/src/Core/arch/CUDA/ |
D | Half.h | 501 static const int max_exponent = 16;
|
/external/pdfium/third_party/base/numerics/ |
D | safe_conversions_impl.h | 22 ? std::numeric_limits<NumericType>::max_exponent
|
/external/libchrome/base/numerics/ |
D | safe_conversions_impl.h | 29 ? std::numeric_limits<NumericType>::max_exponent
|