HomeSort by: relevance | last modified time | path
    Searched refs:nextafter (Results 1 - 9 of 9) sorted by relevancy

  /src/lib/libm/src/
s_nextafter.c 19 * nextafter(x,y)
29 __strong_alias(nextafterl, nextafter)
30 __strong_alias(nexttoward, nextafter)
31 __strong_alias(nexttowardl, nextafter)
35 nextafter(double x, double y)
s_fma.c 235 return (nextafter(z, 0));
240 return (nextafter(z, -INFINITY));
243 return (nextafter(z, INFINITY));
  /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
81 CHECK(i, nextafter, x[i], x[i], x[i]);
83 CHECK(i, nextafter, -x[i], -x[i], -x[i]);
95 CHECK(i, nextafter, x[i], x[i + 1], x[i + 1]);
97 CHECK(i, nextafter, x[i], x[n - 1], x[i + 1]);
99 CHECK(i, nextafter, x[i], INFINITY, x[i + 1]);
102 CHECK(i, nextafter, -x[i], -x[i + 1], -x[i + 1]);
104 CHECK(i, nextafter, -x[i], -x[n - 1], -x[i + 1])
    [all...]
  /src/tests/lib/lua/libm/
h_lualibm.c 73 TEST(nextafter(1.0e-14, 1.0));
lualibm.lua 77 -- XXX vax test("nextafter(1.0e-14, 1.0)", lm.nextafter(1.0e-14, 1.0))
  /src/lib/libm/
Makefile 451 math.3 modf.3 nextafter.3 pow.3 \
530 MLINKS+=nextafter.3 nextafterf.3 \
531 nextafter.3 nextafterl.3 \
532 nextafter.3 nexttoward.3 \
533 nextafter.3 nexttowardf.3 \
534 nextafter.3 nexttowardl.3
  /src/include/
tgmath.h 177 #define nextafter(a,b) __TG_FN2(nextafter, (a), (b)) macro
math.h 300 double nextafter(double, double);
  /src/lib/lua/libm/
libm.c 144 DFUNC_DBL_DBL(nextafter)
283 { "nextafter", libm_nextafter },

Completed in 15 milliseconds