Searched refs:nextafterl (Results 1 - 6 of 6) sorted by relevance

/bionic/libm/upstream-freebsd/lib/msun/src/
H A Ds_fmal.c84 sum.hi = nextafterl(sum.hi, INFINITY * sum.lo);
117 sum.hi = nextafterl(sum.hi, INFINITY * sum.lo);
210 return (nextafterl(z, 0));
215 return (nextafterl(z, -INFINITY));
218 return (nextafterl(z, INFINITY));
H A Ds_nextafterl.c34 nextafterl(long double x, long double y) function
80 __strong_reference(nextafterl, nexttowardl);
H A Ds_nextafter.c82 __weak_reference(nextafter, nextafterl);
/bionic/libc/include/
H A Dmath.h296 long double nextafterl(long double, long double) __INTRODUCED_IN(21) __VERSIONER_NO_GUARD;
/bionic/tools/versioner/current/
H A Dmath.h296 long double nextafterl(long double, long double) __INTRODUCED_IN(21) __VERSIONER_NO_GUARD;
/bionic/tests/
H A Dmath_test.cpp1035 TEST(math, nextafterl) {
1036 ASSERT_DOUBLE_EQ(0.0L, nextafterl(0.0L, 0.0L));
1040 ASSERT_DOUBLE_EQ(smallest_positive, nextafterl(0.0L, 1.0L));
1041 ASSERT_DOUBLE_EQ(-smallest_positive, nextafterl(0.0L, -1.0L));
1378 ASSERT_TRUE(nextafterl(1.0L, 0.0L) - 1.0L < 0.0L);

Completed in 82 milliseconds