Home
last modified time | relevance | path

Searched refs:nexttowardl (Results 1 – 7 of 7) sorted by relevance

/ndk/sources/android/support/tests/
Dmath_unittest.cc29 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/
Dmath.c65 ld = nexttowardl(ld, 0); in main()
Dmath.cpp65 ld = nexttowardl(ld, 0); in main()
/ndk/sources/android/support/src/
Dmath_support.c50 __attribute__((weak)) long double nexttowardl(long double ld, long double td) { in nexttowardl() function
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcmath262 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/
Dmath_h.pass.cpp547 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/
Dcmath.pass.cpp1144 …static_assert((std::is_same<decltype(std::nexttowardl(0, (long double)0)), long double>::value), "… in test_nexttoward()