Home
last modified time | relevance | path

Searched refs:ldexp (Results 1 – 11 of 11) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/support/
Dhexfloat.h31 value_ = std::ldexp(m1 + s * std::ldexp(T(m0), -static_cast<int>(n - in hexfloat()
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_cmath.h373 _STLP_MATH_INLINE2X(double, int, ldexp, ldexp) in _STLP_DMATH_INLINE()
410 # if defined (ldexp)
411 inline double __stlp_ldexp(double __x, int __y) { return ldexp(__x, __y); } in __stlp_ldexp()
412 # undef ldexp
413 inline double ldexp(double __x, int __y) { return __stlp_ldexp(__x, __y); } in ldexp() function
444 _STLP_DEF_MATH_INLINE2I(ldexp, ldexp)
581 using ::ldexp;
/ndk/tests/device/test-stlport/unit/
Dcmath_test.cpp100 CPPUNIT_CHECK( are_equals(std::ldexp(1.0, 2), 4.0) ); in import_checks()
125 CPPUNIT_CHECK( are_equals(std::ldexp(1.0f, 2), 4.0f) ); in import_checks()
151 CPPUNIT_CHECK( are_equals(std::ldexp(1.0l, 2), 4.0l) ); in import_checks()
/ndk/tests/device/test-gnustl-full/unit/
Dcmath_test.cpp100 CPPUNIT_CHECK( are_equals(std::ldexp(1.0, 2), 4.0) ); in import_checks()
125 CPPUNIT_CHECK( are_equals(std::ldexp(1.0f, 2), 4.0f) ); in import_checks()
151 CPPUNIT_CHECK( are_equals(std::ldexp(1.0l, 2), 4.0l) ); in import_checks()
/ndk/sources/cxx-stl/system/include/
Dcmath59 using ::ldexp;
/ndk/sources/cxx-stl/gabi++/include/
Dcmath59 using ::ldexp;
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/tools/
Dconfig.hpp230 using std::ldexp;\
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/
Dcmath.pass.cpp260 static_assert((std::is_same<decltype(std::ldexp((float)0, ip)), float>::value), ""); in test_ldexp()
261 static_assert((std::is_same<decltype(std::ldexp((bool)0, ip)), double>::value), ""); in test_ldexp()
262 static_assert((std::is_same<decltype(std::ldexp((unsigned short)0, ip)), double>::value), ""); in test_ldexp()
263 static_assert((std::is_same<decltype(std::ldexp((int)0, ip)), double>::value), ""); in test_ldexp()
264 static_assert((std::is_same<decltype(std::ldexp((unsigned int)0, ip)), double>::value), ""); in test_ldexp()
265 static_assert((std::is_same<decltype(std::ldexp((long)0, ip)), double>::value), ""); in test_ldexp()
266 static_assert((std::is_same<decltype(std::ldexp((unsigned long)0, ip)), double>::value), ""); in test_ldexp()
267 static_assert((std::is_same<decltype(std::ldexp((long long)0, ip)), double>::value), ""); in test_ldexp()
268 … static_assert((std::is_same<decltype(std::ldexp((unsigned long long)0, ip)), double>::value), ""); in test_ldexp()
269 static_assert((std::is_same<decltype(std::ldexp((double)0, ip)), double>::value), ""); in test_ldexp()
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcmath98 floating_point ldexp (arithmetic value, int exp);
882 // ldexp
884 using ::ldexp;
888 inline _LIBCPP_INLINE_VISIBILITY float ldexp(float __x, int __e) _NOEXCEPT {return ldex…
889 inline _LIBCPP_INLINE_VISIBILITY long double ldexp(long double __x, int __e) _NOEXCEPT {return ldex…
895 ldexp(_A1 __x, int __e) _NOEXCEPT {return ldexp((double)__x, __e);}
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dmath_h.pass.cpp118 static_assert((std::is_same<decltype(ldexp((double)0, ip)), double>::value), ""); in test_ldexp()
121 assert(ldexp(1, ip) == 2); in test_ldexp()
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/policies/
Dpolicy.hpp866 return ldexp(T(1.0), 1 - Digits::value); in get()