Searched refs:nextafterl (Results 1 - 6 of 6) sorted by relevance
/bionic/libm/upstream-freebsd/lib/msun/src/ |
H A D | s_fmal.c | 84 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 D | s_nextafterl.c | 34 nextafterl(long double x, long double y) function 80 __strong_reference(nextafterl, nexttowardl);
|
H A D | s_nextafter.c | 82 __weak_reference(nextafter, nextafterl);
|
/bionic/libc/include/ |
H A D | math.h | 296 long double nextafterl(long double, long double) __INTRODUCED_IN(21) __VERSIONER_NO_GUARD;
|
/bionic/tools/versioner/current/ |
H A D | math.h | 296 long double nextafterl(long double, long double) __INTRODUCED_IN(21) __VERSIONER_NO_GUARD;
|
/bionic/tests/ |
H A D | math_test.cpp | 1035 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