Searched refs:scalbln (Results 1 – 8 of 8) sorted by relevance
/ndk/sources/android/support/tests/ |
D | math_unittest.cc | 37 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/ |
D | scalbln.c | 4 double scalbln(double x, long n) in scalbln() function
|
D | scalblnl.c | 8 return scalbln(x, n); in scalblnl()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/ |
D | cmath.pass.cpp | 1231 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/android/support/ |
D | Android.mk | 132 src/musl-math/scalbln.c \
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | cmath | 280 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/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/ |
D | math_h.pass.cpp | 587 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++/ |
D | export_symbols.txt | 2273 scalbln;
|