Home
last modified time | relevance | path

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

/ndk/sources/android/support/tests/
Dmath_unittest.cc37 TEST(math, scalbln) { in TEST() argument
38 EXPECT_EQ(16., scalbln(2.0, (long int)3)); in TEST()
/ndk/sources/android/support/src/musl-math/
Dscalbln.c4 double scalbln(double x, long n) in scalbln() function
Dscalblnl.c8 return scalbln(x, n); in scalblnl()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/
Dcmath.pass.cpp1231 static_assert((std::is_same<decltype(std::scalbln((float)0, (long)0)), float>::value), ""); in test_scalbln()
1232 static_assert((std::is_same<decltype(std::scalbln((bool)0, (long)0)), double>::value), ""); in test_scalbln()
1233 …static_assert((std::is_same<decltype(std::scalbln((unsigned short)0, (long)0)), double>::value), "… in test_scalbln()
1234 static_assert((std::is_same<decltype(std::scalbln((int)0, (long)0)), double>::value), ""); in test_scalbln()
1235 …static_assert((std::is_same<decltype(std::scalbln((unsigned int)0, (long)0)), double>::value), ""); in test_scalbln()
1236 static_assert((std::is_same<decltype(std::scalbln((long)0, (long)0)), double>::value), ""); in test_scalbln()
1237 …static_assert((std::is_same<decltype(std::scalbln((unsigned long)0, (long)0)), double>::value), ""… in test_scalbln()
1238 static_assert((std::is_same<decltype(std::scalbln((long long)0, (long)0)), double>::value), ""); in test_scalbln()
1239 …static_assert((std::is_same<decltype(std::scalbln((unsigned long long)0, (long)0)), double>::value… in test_scalbln()
1240 static_assert((std::is_same<decltype(std::scalbln((double)0, (long)0)), double>::value), ""); in test_scalbln()
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcmath280 floating_point scalbln (arithmetic x, long ex);
1563 // scalbln
1565 using ::scalbln;
1568 inline _LIBCPP_INLINE_VISIBILITY float scalbln(float __x, long __y) _NOEXCEPT {return s…
1569 inline _LIBCPP_INLINE_VISIBILITY long double scalbln(long double __x, long __y) _NOEXCEPT {return s…
1574 scalbln(_A1 __x, long __y) _NOEXCEPT {return scalbln((double)__x, __y);}
/ndk/sources/android/support/
DAndroid.mk163 src/musl-math/scalbln.c \
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dmath_h.pass.cpp587 static_assert((std::is_same<decltype(scalbln((double)0, (long)0)), double>::value), ""); in test_scalbln()
590 assert(scalbln(1, 1) == 2); in test_scalbln()
/ndk/sources/cxx-stl/llvm-libc++/
Dexport_symbols.txt2273 scalbln;
/ndk/docs/text/
DCHANGES.text82 > 10. Added scalbln, scalblnf, and scalblnl to x86's libm.so for API >= 18