/src/tests/lib/libm/ |
t_next.c | 42 atf_tc_set_md_var(tc, "descr", "vax nextafter/nexttoward reminder"); 48 atf_tc_fail("missing nextafter{,f,l} and nexttoward{,f,l} on vax"); 72 * numbers. Verify nextafter and nexttoward follow exactly this 82 CHECK(i, nexttoward, x[i], x[i], x[i]); 84 CHECK(i, nexttoward, -x[i], -x[i], -x[i]); 91 CHECK(i, nexttoward, x[i], x[i]*(1 + LDBL_EPSILON), 96 CHECK(i, nexttoward, x[i], x[i + 1], x[i + 1]); 98 CHECK(i, nexttoward, x[i], x[n - 1], x[i + 1]); 100 CHECK(i, nexttoward, x[i], INFINITY, x[i + 1]); 103 CHECK(i, nexttoward, -x[i], -x[i + 1], -x[i + 1]) [all...] |
/src/lib/libm/src/ |
s_nextafter.c | 30 __strong_alias(nexttoward, nextafter)
|
s_nexttoward.c | 20 * where long double is the same as double, nexttoward() is an alias 38 * The nexttoward() function is equivalent to nextafter() function, 46 nexttoward(double x, long double y) function in typeref:typename:double
|
/src/include/ |
tgmath.h | 178 #define nexttoward(a,b) __TG_FN2(nexttoward, (a), (b)) macro
|
math.h | 464 double nexttoward(double, long double);
|
/src/lib/libm/ |
Makefile | 532 nextafter.3 nexttoward.3 \
|