/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/detail/ |
D | lcast_precision.hpp | 48 typedef std::numeric_limits<T> limits; // No fix for SF:1358600. typedef 54 >::type limits; 58 !limits::is_specialized || limits::is_exact 63 limits::radix == 2 && limits::digits > 0 68 limits::radix == 10 && limits::digits10 > 0 75 BOOST_STATIC_CONSTANT(unsigned int, precision_dec = limits::digits10 + 1U); 82 2UL + limits::digits * 30103UL / 100000UL 86 (limits::digits + 0UL < ULONG_MAX / 30103UL && 87 precision_bin > limits::digits10 + 0UL && 106 typedef std::numeric_limits<T> limits; // No fix for SF:1358600. in lcast_get_precision() [all …]
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/detail/ |
D | bounds.hpp | 22 typedef std::numeric_limits<N> limits ; typedef in boost::numeric::boundsdetail::Integral 26 static N lowest () { return limits::min BOOST_PREVENT_MACRO_SUBSTITUTION (); } in lowest() 27 static N highest () { return limits::max BOOST_PREVENT_MACRO_SUBSTITUTION (); } in highest() 34 typedef std::numeric_limits<N> limits ; typedef in boost::numeric::boundsdetail::Float 38 … static N lowest () { return static_cast<N>(-limits::max BOOST_PREVENT_MACRO_SUBSTITUTION ()) ; } in lowest() 39 static N highest () { return limits::max BOOST_PREVENT_MACRO_SUBSTITUTION (); } in highest() 40 static N smallest() { return limits::min BOOST_PREVENT_MACRO_SUBSTITUTION (); } in smallest()
|
/ndk/sources/cxx-stl/stlport/src/ |
D | num_get_float.cpp | 335 typedef numeric_limits<double> limits; in _Stl_atod() typedef 420 if (value == (ULL(1) << (limits::digits - 1))) { /* carry created normal number */ in _Stl_atod() 464 if (bexp > limits::max_exponent) { /* overflow */ in _Stl_atod() 465 return limits::infinity(); in _Stl_atod() 468 value &= ~(ULL(1) << (limits::digits - 1)); /* hide hidden bit */ in _Stl_atod() 485 typedef numeric_limits<D> limits; in _Stl_atodT() typedef 529 if ( bexp >= limits::min_exponent ) { /* not zero or denorm */ in _Stl_atodT() 530 if ( limits::digits < 64 ) { in _Stl_atodT() 532 uint64_t rest = vv.i64 & ((~ULL(0) / ULL(2)) >> (limits::digits - 1)); in _Stl_atodT() 548 …if ( (vv.i64 >> (limits::digits < 64 ? limits::digits : 0)) != 0 ) { /* carry all the way across */ in _Stl_atodT() [all …]
|
D | num_put_float.cpp | 634 typedef numeric_limits<_FloatT> limits; in __format_nan_or_inf() typedef 635 if (x == limits::infinity() || x == -limits::infinity()) { in __format_nan_or_inf() 757 typedef numeric_limits<_FloatT> limits; typedef 758 char static_buf[limits::max_exponent10 + 6]; // 6: -xxx.yyyE-zzz (sign, dot, E, exp sign, \0) 766 typedef numeric_limits<_FloatT> limits; 768 if (limits::has_infinity && limits::has_quiet_NaN) { 770 (x == limits::infinity() || x == -limits::infinity())) { 792 char cvtbuf[limits::max_exponent10 + limits::digits10 + 2 + 1]; 804 int digits10 = (x > -1.0 && x < 1.0 ? -limits::min_exponent10 + limits::digits10 + 2 805 : limits::digits10 + 2); [all …]
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | num_put_get_test.cpp | 80 typedef numeric_limits<F> limits; in check_get_float() typedef 84 str << "1E+" << limits::max_exponent10; in check_get_float() 90 CPPUNIT_CHECK( in_val_d != limits::infinity() ); in check_get_float() 95 str << "-1E+" << limits::max_exponent10; in check_get_float() 101 CPPUNIT_CHECK( in_val_d != -limits::infinity() ); in check_get_float() 106 str << "1E" << limits::min_exponent10; in check_get_float() 117 str << "1E+" << (limits::max_exponent10 + 1); in check_get_float() 123 CPPUNIT_CHECK( in_val_d == limits::infinity() ); in check_get_float() 128 str << "-1E+" << (limits::max_exponent10 + 1); in check_get_float() 134 CPPUNIT_CHECK( in_val_d == -limits::infinity() ); in check_get_float() [all …]
|
/ndk/tests/device/test-stlport/unit/ |
D | num_put_get_test.cpp | 80 typedef numeric_limits<F> limits; in check_get_float() typedef 84 str << "1E+" << limits::max_exponent10; in check_get_float() 90 CPPUNIT_CHECK( in_val_d != limits::infinity() ); in check_get_float() 95 str << "-1E+" << limits::max_exponent10; in check_get_float() 101 CPPUNIT_CHECK( in_val_d != -limits::infinity() ); in check_get_float() 106 str << "1E" << limits::min_exponent10; in check_get_float() 117 str << "1E+" << (limits::max_exponent10 + 1); in check_get_float() 123 CPPUNIT_CHECK( in_val_d == limits::infinity() ); in check_get_float() 128 str << "-1E+" << (limits::max_exponent10 + 1); in check_get_float() 134 CPPUNIT_CHECK( in_val_d == -limits::infinity() ); in check_get_float() [all …]
|
/ndk/sources/cxx-stl/stlport/stlport/ |
D | limits.h | 28 # include_next <limits.h> 30 # include _STLP_NATIVE_C_HEADER(limits.h)
|
D | climits | 25 # include </usr/include/limits.h> 35 # include_next <limits.h> 37 # include _STLP_NATIVE_C_HEADER(limits.h) 40 # include <limits.h>
|
D | limits | 35 # include_next <limits> 37 # include _STLP_NATIVE_HEADER(limits)
|
D | memory | 45 # include _STLP_NATIVE_HEADER(limits)
|
/ndk/sources/cxx-stl/gabi++/include/ |
D | climits | 34 * Standard C++ Library wrapper around the C limits.h header file. 37 #include <limits.h>
|
D | cfloat | 36 #include <sys/limits.h>
|
/ndk/sources/cxx-stl/system/include/ |
D | climits | 34 * Standard C++ Library wrapper around the C limits.h header file. 37 #include <limits.h>
|
D | cfloat | 36 #include <sys/limits.h>
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | climits | 42 #include <limits.h>
|
D | limits | 2 //===---------------------------- limits ----------------------------------===// 15 limits synopsis 119 #include "support/ibm/limits.h"
|
/ndk/tests/device/test-libc++-shared-full/jni/ |
D | Android.mk | 1743 $(call gen-test, input.output/iostreams.requirements/iostream.limits.imbue/tested_elsewhere) 1744 $(call gen-test, input.output/iostreams.requirements/iostreams.limits.pos/nothing_to_do) 2030 $(call gen-test, language.support/support.limits/c.limits/cfloat) 2031 $(call gen-test, language.support/support.limits/c.limits/climits) 2032 $(call gen-test, language.support/support.limits/c.limits/version_cfloat) 2033 $(call gen-test, language.support/support.limits/c.limits/version_climits) 2034 $(call gen-test, language.support/support.limits/limits/denorm.style/check_values) 2035 $(call gen-test, language.support/support.limits/limits/is_specialized) 2036 $(call gen-test, language.support/support.limits/limits/numeric.limits/default) 2037 $(call gen-test, language.support/support.limits/limits/numeric.limits.members/const_data_members) [all …]
|
/ndk/tests/device/test-libc++-static-full/jni/ |
D | Android.mk | 1734 $(call gen-test, input.output/iostreams.requirements/iostream.limits.imbue/tested_elsewhere) 1735 $(call gen-test, input.output/iostreams.requirements/iostreams.limits.pos/nothing_to_do) 2021 $(call gen-test, language.support/support.limits/c.limits/cfloat) 2022 $(call gen-test, language.support/support.limits/c.limits/climits) 2023 $(call gen-test, language.support/support.limits/c.limits/version_cfloat) 2024 $(call gen-test, language.support/support.limits/c.limits/version_climits) 2025 $(call gen-test, language.support/support.limits/limits/denorm.style/check_values) 2026 $(call gen-test, language.support/support.limits/limits/is_specialized) 2027 $(call gen-test, language.support/support.limits/limits/numeric.limits/default) 2028 $(call gen-test, language.support/support.limits/limits/numeric.limits.members/const_data_members) [all …]
|
/ndk/sources/host-tools/make-3.81/config/ |
D | size_max.m4 | 18 #include <limits.h>
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/ |
D | exception_safety.ipp | 48 #include <boost/limits.hpp>
|
/ndk/sources/host-tools/make-3.81/tests/ |
D | NEWS | 109 limits won't hate me any more. Thanks very much to Kaveh R. Ghazi
|
/ndk/sources/host-tools/make-3.81/ |
D | config.ami | 286 /* Define if you have the <limits.h> header file. */
|
D | config.h-vms | 314 /* Define if you have the <limits.h> header file. */
|
D | config.h.in | 127 /* Define to 1 if you have the <limits.h> header file. */
|
D | configure.in | 68 AC_CHECK_HEADERS(stdlib.h locale.h unistd.h limits.h fcntl.h string.h \
|