Searched refs:nexttowardl (Results 1 – 7 of 7) sorted by relevance
/ndk/sources/android/support/tests/ |
D | math_unittest.cc | 29 TEST(math, nexttowardl) { in TEST() argument 31 EXPECT_EQ(x, nexttowardl(x, x)); in TEST() 32 EXPECT_GT(x, nexttowardl(x, x * 2.)); in TEST() 33 EXPECT_LT(x, nexttowardl(x, x - 1.0)); in TEST()
|
/ndk/tests/device/math/jni/ |
D | math.c | 65 ld = nexttowardl(ld, 0); in main()
|
D | math.cpp | 65 ld = nexttowardl(ld, 0); in main()
|
/ndk/sources/android/support/src/ |
D | math_support.c | 50 __attribute__((weak)) long double nexttowardl(long double ld, long double td) { in nexttowardl() function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | cmath | 262 long double nexttowardl(long double x, long double y); 1482 … long double nexttoward(long double __x, long double __y) _NOEXCEPT {return nexttowardl(__x, __y);} 1668 using ::nexttowardl;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/ |
D | math_h.pass.cpp | 547 static_assert((std::is_same<decltype(nexttowardl(0, (long double)0)), long double>::value), ""); in test_nexttoward()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/ |
D | cmath.pass.cpp | 1144 …static_assert((std::is_same<decltype(std::nexttowardl(0, (long double)0)), long double>::value), "… in test_nexttoward()
|