Searched refs:nexttowardf (Results 1 – 5 of 5) sorted by relevance
/ndk/sources/android/support/tests/ |
D | math_unittest.cc | 22 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/ |
D | math_support.c | 46 __attribute__((weak)) float nexttowardf(float f, long double td) { in nexttowardf() function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | cmath | 261 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/ |
D | math_h.pass.cpp | 546 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/ |
D | cmath.pass.cpp | 1143 static_assert((std::is_same<decltype(std::nexttowardf(0, (long double)0)), float>::value), ""); in test_nexttoward()
|