/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/ |
H A D | math_nexttoward_test.cpp | 18 EXPECT_DOUBLE_EQ(0.0, nexttoward(0.0, 0.0L)); in HWTEST_F() 19 EXPECT_DOUBLE_EQ(4.9406564584124654e-324, nexttoward(0.0, 1.0L)); in HWTEST_F() 20 EXPECT_DOUBLE_EQ(-4.9406564584124654e-324, nexttoward(0.0, -1.0L)); in HWTEST_F()
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
H A D | nexttoward.c | 4 double nexttoward(double x, long double y) in nexttoward() function 9 double nexttoward(double x, long double y) in nexttoward() function
|
/third_party/musl/src/math/ |
H A D | nexttoward.c | 4 double nexttoward(double x, long double y) in nexttoward() function 9 double nexttoward(double x, long double y) in nexttoward() function
|
/third_party/musl/libc-test/src/api/ |
H A D | tgmath.c | 231 #ifdef nexttoward in f() 232 {double r = nexttoward(x,y);} in f() 234 #error no nexttoward(x,y) in f()
|
H A D | math.c | 185 {double(*p)(double,long double) = nexttoward;} in f()
|
/third_party/musl/libc-test/src/math/ |
H A D | nexttoward.c | 8 #include "sanity/nexttoward.h" 9 #include "special/nexttoward.h" 12 #include "sanity/nexttoward.h" 13 #include "special/nexttoward.h" 33 y = nexttoward(p->x, p->x2); in main() 37 printf("%s:%d: bad fp exception: %s nexttoward(%La,%La)=%La, want %s", in main() 44 printf("%s:%d: %s nexttoward(%La,%La) want %La got %a ulperr %.3f = %a + %a\n", in main()
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | tgmath.h | 191 #undef nexttoward macro 254 #define nexttoward(x,y) __tg_real_2(nexttoward, (x), (y)) macro
|
H A D | math.h | 303 double nexttoward(double, long double);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | tgmath.h | 191 #undef nexttoward macro 254 #define nexttoward(x,y) __tg_real_2(nexttoward, (x), (y)) macro
|
H A D | math.h | 303 double nexttoward(double, long double);
|
/third_party/musl/include/ |
H A D | tgmath.h | 191 #undef nexttoward macro 254 #define nexttoward(x,y) __tg_real_2(nexttoward, (x), (y)) macro
|
H A D | math.h | 303 double nexttoward(double, long double);
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/ |
H A D | uniform_helper_test.cc | 146 const auto re = std::nexttoward(r, 0.0); in TEST_F() 148 const auto le = std::nexttoward(l, 0.0); in TEST_F()
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | math.h | 303 double nexttoward(double, long double);
|
/third_party/musl/libc-test/src/math/gen/ |
H A D | mplibm.c | 177 t->y = nexttoward(t->x, t->x2); in mpnexttoward()
|
H A D | mp.c | 549 t->y = nexttoward(t->x, t->x2); in mpnexttoward()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/numeric/ |
H A D | int128_test.cc | 669 TypeParam just_lt_one = std::nexttoward(TypeParam(1), TypeParam(0)); in TYPED_TEST() 671 TypeParam just_gt_minus_one = std::nexttoward(TypeParam(-1), TypeParam(0)); in TYPED_TEST()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | 33676 extern double nexttoward (double __x, long double __y) throw () __attribute__ ((__const__)); extern double __nexttoward (double __x, long double __y) throw () __attribute__ ((__const__)); 35317 using ::nexttoward; 35822 nexttoward(float __x, long double __y) 35826 nexttoward(long double __x, long double __y) 35834 nexttoward(_Tp __x, long double __y) [all...] |