| /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
|
| /src/external/gpl3/gcc/dist/gcc/ginclude/ |
| tgmath.h | 109 #define nexttoward(x,y) __TGMATH_REAL_2(x, y, nexttoward) macro
|
| /src/external/gpl3/gcc.old/dist/gcc/ginclude/ |
| tgmath.h | 109 #define nexttoward(x,y) __TGMATH_REAL_2(x, y, nexttoward) macro
|
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/stdc/ |
| tgmath.d | 474 alias core.stdc.math.nexttoward nexttoward; 476 alias core.stdc.math.nexttowardf nexttoward; 478 alias core.stdc.math.nexttowardl nexttoward; 964 alias core.stdc.math.nexttoward nexttoward; 966 alias core.stdc.math.nexttowardf nexttoward; 968 alias core.stdc.math.nexttowardl nexttoward; 1481 alias core.stdc.math.nexttoward nexttoward; [all...] |
| math.d | 2033 double nexttoward(double x, real y); 2037 extern(D) real nexttowardl()(real x, real y) { return nexttoward(cast(double) x, cast(double) y); } 2434 double nexttoward(double x, real y); 2542 extern(D) real nexttowardl(real x, real y) { return nexttoward(cast(double) x, cast(double) y); } 2889 double nexttoward(double x, real y); 3020 double nexttoward(double x, real y); 3383 double nexttoward(double x, real y); 3928 double nexttoward(double x, real y); 4331 double nexttoward(double x, real y); 4335 extern(D) real nexttowardl(real x, real y) { return nexttoward(cast(double) x, cast(double) y); [all...] |
| /src/include/ |
| tgmath.h | 178 #define nexttoward(a,b) __TG_FN2(nexttoward, (a), (b)) macro
|
| math.h | 464 double nexttoward(double, long double);
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/c_compatibility/ |
| math.h | 103 using std::nexttoward;
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/ |
| math.h | 78 using std::tr1::nexttoward;
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/c_compatibility/ |
| math.h | 103 using std::nexttoward;
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr1/ |
| math.h | 76 using std::tr1::nexttoward;
|
| /src/external/apache2/llvm/dist/clang/lib/Headers/ |
| tgmath.h | 1058 // nexttoward 1066 __tg_nexttoward(double __x, long double __y) {return nexttoward(__x, __y);} 1072 #undef nexttoward macro 1073 #define nexttoward(__x, __y) __tg_nexttoward(__tg_promote1((__x))(__x), (__y)) macro
|
| /src/external/apache2/llvm/dist/libcxx/include/ |
| math.h | 256 floating_point nexttoward (arithmetic x, long double y); 1532 // nexttoward 1534 inline _LIBCPP_INLINE_VISIBILITY float nexttoward(float __lcpp_x, long double __lcpp_y) _NOEXCEPT {return ::nexttowardf(__lcpp_x, __lcpp_y);} 1535 inline _LIBCPP_INLINE_VISIBILITY long double nexttoward(long double __lcpp_x, long double __lcpp_y) _NOEXCEPT {return ::nexttowardl(__lcpp_x, __lcpp_y);} 1540 nexttoward(_A1 __lcpp_x, long double __lcpp_y) _NOEXCEPT {return ::nexttoward((double)__lcpp_x, __lcpp_y);}
|
| /src/lib/libm/ |
| Makefile | 532 nextafter.3 nexttoward.3 \
|
| /src/external/gpl3/gcc/dist/gcc/cp/ |
| cfns.h | 871 {"nexttoward", 99},
|
| /src/external/gpl3/gcc.old/dist/gcc/cp/ |
| cfns.h | 871 {"nexttoward", 99},
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/ |
| configure | 18596 nexttoward(0.0, 0.0); 20929 nexttoward(0.0, 0.0); [all...] |
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| CGBuiltin.cpp | 2173 MUTATE_LDBL(nexttoward)
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/ |
| configure | 20101 nexttoward(0.0, 0.0); [all...] |