Home
last modified time | relevance | path

Searched refs:nexttowardf (Results 1 – 5 of 5) sorted by relevance

/ndk/sources/android/support/tests/
Dmath_unittest.cc22 TEST(math, nexttowardf) { in TEST() argument
24 EXPECT_EQ(x, nexttowardf(x, (long double)x)); in TEST()
25 EXPECT_GT(x, nexttowardf(x, (long double)(x * 2.))); in TEST()
26 EXPECT_LT(x, nexttowardf(x, (long double)(x - 1.0))); in TEST()
/ndk/sources/android/support/src/
Dmath_support.c46 __attribute__((weak)) float nexttowardf(float f, long double td) { in nexttowardf() function
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcmath261 float nexttowardf(float x, long double y);
1479 using ::nexttowardf;
1481 … float nexttoward(float __x, long double __y) _NOEXCEPT {return nexttowardf(__x, __y);}
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dmath_h.pass.cpp546 static_assert((std::is_same<decltype(nexttowardf(0, (long double)0)), float>::value), ""); in test_nexttoward()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/
Dcmath.pass.cpp1143 static_assert((std::is_same<decltype(std::nexttowardf(0, (long double)0)), float>::value), ""); in test_nexttoward()