/third_party/musl/src/math/ |
H A D | fmal.c | 91 sum.hi = nextafterl(sum.hi, INFINITY * sum.lo); in add_adjusted() 123 sum.hi = nextafterl(sum.hi, INFINITY * sum.lo); in add_and_denormalize() 215 return (nextafterl(z, 0)); in fmal() 222 return (nextafterl(z, -INFINITY)); in fmal() 227 return (nextafterl(z, INFINITY)); in fmal()
|
H A D | nextafterl.c | 4 long double nextafterl(long double x, long double y) in nextafterl() function 9 long double nextafterl(long double x, long double y) in nextafterl() function 45 long double nextafterl(long double x, long double y) in nextafterl() function
|
H A D | nexttowardl.c | 5 return nextafterl(x, y); in nexttowardl()
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
H A D | fmal.c | 91 sum.hi = nextafterl(sum.hi, INFINITY * sum.lo); in add_adjusted() 123 sum.hi = nextafterl(sum.hi, INFINITY * sum.lo); in add_and_denormalize() 215 return (nextafterl(z, 0)); in fmal() 222 return (nextafterl(z, -INFINITY)); in fmal() 227 return (nextafterl(z, INFINITY)); in fmal()
|
H A D | nextafterl.c | 4 long double nextafterl(long double x, long double y) in nextafterl() function 9 long double nextafterl(long double x, long double y) in nextafterl() function 45 long double nextafterl(long double x, long double y) in nextafterl() function
|
H A D | nexttowardl.c | 5 return nextafterl(x, y); in nexttowardl()
|
/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/ |
H A D | math_nextafter_test.cpp | 76 EXPECT_DOUBLE_EQ(0.0L, nextafterl(0.0L, 0.0L)); in HWTEST_F() 78 EXPECT_DOUBLE_EQ(minPositive, nextafterl(0.0L, 1.0L)); in HWTEST_F() 79 EXPECT_DOUBLE_EQ(-minPositive, nextafterl(0.0L, -1.0L)); in HWTEST_F()
|
/third_party/musl/libc-test/src/math/gen/ |
H A D | prev.c | 25 ld = nextafterl(ld, -INFINITY); in main()
|
H A D | next.c | 25 ld = nextafterl(ld, INFINITY); in main()
|
H A D | mplibm.c | 173 int mpnextafterl(struct t *t) { return mpl2(t, nextafterl); } in mpnextafterl()
|
H A D | mp.c | 541 t->y = nextafterl(t->x, t->x2); in mpnextafterl()
|
/third_party/musl/libc-test/src/math/ |
H A D | nextafterl.c | 11 #include "sanity/nextafterl.h" 12 #include "special/nextafterl.h" 32 y = nextafterl(p->x, p->x2); in main() 36 printf("%s:%d: bad fp exception: %s nextafterl(%La,%La)=%La, want %s", in main() 43 printf("%s:%d: %s nextafterl(%La,%La) want %La got %La ulperr %.3f = %a + %a\n", in main()
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | math.h | 301 long double nextafterl(long double, long double);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | math.h | 301 long double nextafterl(long double, long double);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | math.h | 301 long double nextafterl(long double, long double);
|
/third_party/musl/include/ |
H A D | math.h | 301 long double nextafterl(long double, long double);
|
/third_party/musl/libc-test/src/api/ |
H A D | math.c | 184 {long double(*p)(long double,long double) = nextafterl;} in f()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | 34300 extern long double nextafterl (long double __x, long double __y) throw () __attribute__ ((__const__)); extern long double __nextafterl (long double __x, long double __y) throw () __attribute__ ((__const__)); 35315 using ::nextafterl; [all...] |