/bionic/libm/upstream-freebsd/lib/msun/src/ |
e_remainderl.c | 35 remainderl(long double x, long double y) function
|
e_remainder.c | 78 __weak_reference(remainder, remainderl);
|
/external/clang/test/CodeGen/ |
libcall-declarations.c | 147 long double remainderl(long double, long double); 291 F(remainder), F(remainderf), F(remainderl), F(rint), F(rintf), 446 // CHECK-NOERRNO: declare x86_fp80 @remainderl(x86_fp80, x86_fp80) [[NUW]]
|
/bionic/tests/headers/posix/ |
math_h.c | 293 FUNCTION(remainderl, long double (*f)(long double, long double));
|
/bionic/tests/ |
math_test.cpp | 874 TEST(MATH_TEST, remainderl) { 875 ASSERT_DOUBLE_EQ(2.0L, remainderl(12.0L, 10.0L)); 878 ASSERT_TRUE(isnanl(remainderl(nanl(""), 10.0L))); 879 ASSERT_TRUE(isnanl(remainderl(12.0L, nanl("")))); 882 ASSERT_TRUE(isnanl(remainderl(HUGE_VALL, 10.0L))); 883 ASSERT_TRUE(isnanl(remainderl(-HUGE_VALL, 10.0L))); 886 ASSERT_TRUE(isnanl(remainderl(12.0L, 0.0L))); [all...] |
/bionic/libc/include/ |
math.h | 269 long double remainderl(long double __x, long double __y) __RENAME_LDBL(remainder, 3, 21);
|
/external/clang/lib/Headers/ |
tgmath.h | 1094 __tg_remainder(long double __x, long double __y) {return remainderl(__x, __y);}
|
/external/libcxx/include/ |
math.h | 263 long double remainderl(long double x, long double y); [all...] |
/external/libcxx/test/std/depr/depr.c.headers/ |
math_h.pass.cpp | [all...] |
/external/libcxx/test/std/numerics/c.math/ |
cmath.pass.cpp | [all...] |