Home
last modified time | relevance | path

Searched refs:nexttoward (Results 1 – 22 of 22) sorted by relevance

/freebsd-12-stable/lib/msun/tests/
Dnext_test.c63 test##prec(nexttoward##prec((arg1), (arg2)), (ans), (ex)); \
102 test##prec(copysign##prec(1.0, nexttoward##prec(0.0, -0.0)), -1.0, 0);\ in main()
103 test##prec(copysign##prec(1.0, nexttoward##prec(-0.0, 0.0)), 1.0, 0) in main()
119 stest(nexttoward, 0x1p-1074, ); in main()
157 test(nexttoward(1.0, 1.0 + ldbl_eps), 1.0 + DBL_EPSILON, 0); in main()
213 test(idd(nexttoward(DBL_MAX, DBL_MAX * 2.0L)), INFINITY, ex_over); in main()
215 test(idd(nexttoward(INFINITY, DBL_MAX * 2.0L)), DBL_MAX, 0); in main()
/freebsd-12-stable/tools/regression/include/tgmath/
Dtgmath.c141 double (nexttoward)(double x, long double y) { n_double++; }
568 PASS_REAL_FIXED_ARG_REAL_RET(nexttoward, 1) && in main()
569 PASS_REAL_FIXED_ARG_REAL_RET(nexttoward, ull) && in main()
570 PASS_REAL_FIXED_ARG_REAL_RET(nexttoward, d) && in main()
571 PASS_REAL_FIXED_ARG_REAL_RET(nexttoward, fc)); in main()
/freebsd-12-stable/lib/msun/src/
Ds_nexttoward.c33 nexttoward(double x, long double y) in nexttoward() function
Ds_nextafter.c80 __weak_reference(nextafter, nexttoward);
Dmath.h478 double nexttoward(double, long double);
/freebsd-12-stable/contrib/libstdc++/include/tr1/
Dcmath121 #undef nexttoward
267 using ::nexttoward;
778 nexttoward(float __x, long double __y)
782 nexttoward(long double __x, long double __y)
787 nexttoward(_Tp __x, long double __y)
790 return nexttoward(__type(__x), __y);
Dmath.h81 using std::tr1::nexttoward;
/freebsd-12-stable/include/
Dtgmath.h194 #define nexttoward(x, y) __tg_simplev(x, nexttoward, x, y) macro
/freebsd-12-stable/lib/msun/
DSymbol.map144 nexttoward;
DMakefile241 MLINKS+=nextafter.3 nexttoward.3 nextafter.3 nexttowardf.3
/freebsd-12-stable/contrib/llvm-project/clang/lib/Headers/
Dtgmath.h1066 __tg_nexttoward(double __x, long double __y) {return nexttoward(__x, __y);} in __tg_nexttoward()
1072 #undef nexttoward
1073 #define nexttoward(__x, __y) __tg_nexttoward(__tg_promote1((__x))(__x), (__y)) macro
/freebsd-12-stable/contrib/llvm-project/libcxx/include/
Dmath.h1572 inline _LIBCPP_INLINE_VISIBILITY float nexttoward(float __lcpp_x, long double __lcpp_y) _NOEX… in nexttoward() function
1573 inline _LIBCPP_INLINE_VISIBILITY long double nexttoward(long double __lcpp_x, long double __lcpp_y)… in nexttoward() function
1578 nexttoward(_A1 __lcpp_x, long double __lcpp_y) _NOEXCEPT {return ::nexttoward((double)__lcpp_x, __l… in nexttoward() function
Dcmath263 floating_point nexttoward (arithmetic x, long double y);
451 using ::nexttoward _LIBCPP_USING_IF_EXISTS;
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/dfsan/
Ddone_abilist.txt111 fun:nexttoward=functional
Dlibc_ubuntu1404_abilist.txt2345 fun:nexttoward=uninstrumented
/freebsd-12-stable/contrib/llvm-project/libcxx/include/experimental/
Dsimd524 template <class Abi> floatv<Abi> nexttoward(floatv<Abi> x, ldoublev<Abi> y);
525 template <class Abi> doublev<Abi> nexttoward(doublev<Abi> x, ldoublev<Abi> y);
526 template <class Abi> ldoublev<Abi> nexttoward(ldoublev<Abi> x, ldoublev<Abi> y);
/freebsd-12-stable/contrib/gcc/
Dbuiltins.def348 DEF_C99_BUILTIN (BUILT_IN_NEXTTOWARD, "nexttoward", BT_FN_DOUBLE_DOUBLE_LONGDOUBLE, ATTR_MAT…
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Basic/
DBuiltins.def1352 LIBBUILTIN(nexttoward, "ddLd", "fne", "math.h", ALL_LANGUAGES)
/freebsd-12-stable/contrib/libstdc++/
Dacinclude.m41215 nexttoward(0.0, 0.0);
Dconfigure31047 nexttoward(0.0, 0.0);
/freebsd-12-stable/contrib/gcc/doc/
Dextend.texi5621 @findex nexttoward
5806 @code{nexttowardf}, @code{nexttowardl}, @code{nexttoward},
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
DCGBuiltin.cpp2213 MUTATE_LDBL(nexttoward) in mutateLongDoubleBuiltin()