Home
last modified time | relevance | path

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

/ndk/sources/cxx-stl/llvm-libc++/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/gabi++/include/
Dcmath59 using ::ldexp;
/ndk/sources/cxx-stl/system/include/
Dcmath59 using ::ldexp;
/ndk/sources/cxx-stl/llvm-libc++/test/numerics/c.math/
Dcmath.pass.cpp254 static_assert((std::is_same<decltype(std::ldexp((float)0, ip)), float>::value), ""); in test_ldexp()
255 static_assert((std::is_same<decltype(std::ldexp((bool)0, ip)), double>::value), ""); in test_ldexp()
256 static_assert((std::is_same<decltype(std::ldexp((unsigned short)0, ip)), double>::value), ""); in test_ldexp()
257 static_assert((std::is_same<decltype(std::ldexp((int)0, ip)), double>::value), ""); in test_ldexp()
258 static_assert((std::is_same<decltype(std::ldexp((unsigned int)0, ip)), double>::value), ""); in test_ldexp()
259 static_assert((std::is_same<decltype(std::ldexp((long)0, ip)), double>::value), ""); in test_ldexp()
260 static_assert((std::is_same<decltype(std::ldexp((unsigned long)0, ip)), double>::value), ""); in test_ldexp()
261 static_assert((std::is_same<decltype(std::ldexp((long long)0, ip)), double>::value), ""); in test_ldexp()
262 … static_assert((std::is_same<decltype(std::ldexp((unsigned long long)0, ip)), double>::value), ""); in test_ldexp()
263 static_assert((std::is_same<decltype(std::ldexp((double)0, ip)), double>::value), ""); in test_ldexp()
[all …]
/ndk/sources/cxx-stl/llvm-libc++/include/
Dcmath98 floating_point ldexp (arithmetic value, int exp);
880 // ldexp
882 using ::ldexp;
886 inline _LIBCPP_INLINE_VISIBILITY float ldexp(float __x, int __e) _NOEXCEPT {return ldex…
887 inline _LIBCPP_INLINE_VISIBILITY long double ldexp(long double __x, int __e) _NOEXCEPT {return ldex…
893 ldexp(_A1 __x, int __e) _NOEXCEPT {return ldexp((double)__x, __e);}
/ndk/sources/cxx-stl/llvm-libc++/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()