Searched refs:remquo (Results 1 - 7 of 7) sorted by relevance

/external/libcxx/test/numerics/c.math/
H A Dcmath.disabled.cpp1165 static_assert((std::is_same<decltype(std::remquo((float)0, (float)0, &ip)), float>::value), "");
1166 static_assert((std::is_same<decltype(std::remquo((bool)0, (float)0, &ip)), double>::value), "");
1167 static_assert((std::is_same<decltype(std::remquo((unsigned short)0, (double)0, &ip)), double>::value), "");
1168 static_assert((std::is_same<decltype(std::remquo((int)0, (long double)0, &ip)), long double>::value), "");
1169 static_assert((std::is_same<decltype(std::remquo((float)0, (unsigned int)0, &ip)), double>::value), "");
1170 static_assert((std::is_same<decltype(std::remquo((double)0, (long)0, &ip)), double>::value), "");
1171 static_assert((std::is_same<decltype(std::remquo((long double)0, (unsigned long)0, &ip)), long double>::value), "");
1172 static_assert((std::is_same<decltype(std::remquo((int)0, (long long)0, &ip)), double>::value), "");
1173 static_assert((std::is_same<decltype(std::remquo((int)0, (unsigned long long)0, &ip)), double>::value), "");
1174 static_assert((std::is_same<decltype(std::remquo((doubl
[all...]
/external/clang/lib/Headers/
H A Dtgmath.h1100 // remquo
1110 {return remquo(__x, __y, __z);}
1117 #undef remquo macro
1118 #define remquo(__x, __y, __z) \ macro
/external/libcxx/test/depr/depr.c.headers/
H A Dmath_h.disabled.cpp556 static_assert((std::is_same<decltype(remquo((double)0, (double)0, &ip)), double>::value), "");
559 assert(remquo(0.5,1, &ip) == 0.5);
/external/ltrace/etc/
H A Dlibm.so.conf336 double remquo(double, double, +int *);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc3609 INTERCEPTOR(double, remquo, double x, double y, int *quo) {
3611 COMMON_INTERCEPTOR_ENTER(ctx, remquo, x, y, quo);
3615 double res = REAL(remquo)(x, y, quo);
3640 COMMON_INTERCEPT_FUNCTION(remquo); \
/external/eigen/unsupported/test/mpreal/
H A Dmpreal.h460 friend const mpreal remquo (long* q, const mpreal& x, const mpreal& y, mp_rnd_t rnd_mode = mpreal::get_default_rnd());
2156 inline const mpreal remquo (long* q, const mpreal& x, const mpreal& y, mp_rnd_t rnd_mode) function in namespace:mpfr
/external/compiler-rt/lib/msan/tests/
H A Dmsan_test.cc1659 TEST(MemorySanitizer, remquo) {
1661 double res = remquo(29.0, 3.0, &quo);

Completed in 573 milliseconds