HomeSort by relevance Sort by last modified time
    Searched refs:min_exponent (Results 1 - 18 of 18) sorted by null

  /external/libcxx/test/std/language.support/support.limits/limits/numeric.limits.members/
min_exponent.pass.cpp 12 // min_exponent
21 static_assert(std::numeric_limits<T>::min_exponent == expected, "min_exponent test 1");
22 static_assert(std::numeric_limits<const T>::min_exponent == expected, "min_exponent test 2");
23 static_assert(std::numeric_limits<volatile T>::min_exponent == expected, "min_exponent test 3");
24 static_assert(std::numeric_limits<const volatile T>::min_exponent == expected, "min_exponent test 4");
const_data_members.pass.cpp 23 min_exponent
52 test(std::numeric_limits<type>::min_exponent); \
  /external/v8/src/
cached-powers.h 24 // [min_exponent; max_exponent] (boundaries included).
25 static void GetCachedPowerForBinaryExponentRange(int min_exponent,
cached-powers.cc 126 int min_exponent,
133 double k = std::ceil((min_exponent + kQ - 1) * kD_1_LOG2_10);
139 DCHECK(min_exponent <= cached_power.binary_exponent);
bignum.cc 624 // Starting at min_exponent all digits are == 0. So no need to compare them.
625 int min_exponent = Min(Min(a.exponent_, b.exponent_), c.exponent_);
626 for (int i = c.BigitLength() - 1; i >= min_exponent; --i) {
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/language.support/support.limits/limits/numeric.limits.members/
min_exponent.pass.cpp 12 // min_exponent
21 static_assert(std::numeric_limits<T>::min_exponent == expected, "min_exponent test 1");
22 static_assert(std::numeric_limits<const T>::min_exponent == expected, "min_exponent test 2");
23 static_assert(std::numeric_limits<volatile T>::min_exponent == expected, "min_exponent test 3");
24 static_assert(std::numeric_limits<const volatile T>::min_exponent == expected, "min_exponent test 4");
const_data_members.pass.cpp 23 min_exponent
52 test(std::numeric_limits<type>::min_exponent); \
  /external/libcxx/test/std/language.support/support.limits/limits/numeric.limits/
default.pass.cpp 49 static_assert(std::numeric_limits<A>::min_exponent == 0,
50 "std::numeric_limits<A>::min_exponent == 0");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/language.support/support.limits/limits/numeric.limits/
default.pass.cpp 49 static_assert(std::numeric_limits<A>::min_exponent == 0,
50 "std::numeric_limits<A>::min_exponent == 0");
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/SPIRV/
hex_float.h 322 static const int_type min_exponent = -static_cast<int_type>(exponent_bias); member in class:spvutils::HexFloat
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) {
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/util/
hex_float.h 310 static const int_type min_exponent = -static_cast<int_type>(exponent_bias); member in class:spvutils::round_direction::HexFloat
346 if (exp == min_exponent) { // We are in denorm land.
361 for (int_type i = unbiased_exponent; i <= min_exponent; ++i) {
388 if (exponent <= min_exponent) {
396 while (exponent < min_exponent) {
401 if (exponent == min_exponent) {
583 if (exponent == min_exponent) {
    [all...]
  /external/eigen/Eigen/src/Core/
StableNorm.h 78 iemin = std::numeric_limits<RealScalar>::min_exponent; // minimum exponent
  /frameworks/native/libs/math/include/math/
half.h 188 static constexpr const int min_exponent = -13;
  /external/deqp/framework/common/
tcuFloatFormat.cpp 277 return FloatFormat(Limits::min_exponent - 1, // These have a built-in offset of one
  /external/eigen/test/
stable_norm.cpp 36 iemin = std::numeric_limits<RealScalar>::min_exponent; // minimum exponent
  /external/eigen/Eigen/src/Core/arch/CUDA/
Half.h 499 static const int min_exponent = -13; member in struct:std::numeric_limits
  /external/eigen/bench/
bench_norm.cpp 117 iemin = std::numeric_limits<Scalar>::min_exponent; // minimum exponent
  /external/eigen/unsupported/test/mpreal/
mpreal.h 3037 static const int min_exponent = MPFR_EMIN_DEFAULT; member in class:std::numeric_limits
    [all...]

Completed in 611 milliseconds