Searched defs:fmod (Results 1 - 9 of 9) sorted by relevance

/external/clang/lib/Headers/
H A D__clang_cuda_cmath.h61 __DEVICE__ float fmod(float __x, float __y) { return ::fmodf(__x, __y); } function
H A Dtgmath.h790 // fmod
798 __tg_fmod(double __x, double __y) {return fmod(__x, __y);}
804 #undef fmod macro
805 #define fmod(__x, __y) __tg_fmod(__tg_promote2((__x), (__y))(__x), \ macro
/external/bison/darwin-lib/
H A Dmath.h1202 # undef fmod
1203 # define fmod rpl_fmod
1205 _GL_FUNCDECL_RPL (fmod, double, (double x, double y));
1206 _GL_CXXALIAS_RPL (fmod, double, (double x, double y));
1208 _GL_CXXALIAS_SYS (fmod, double, (double x, double y));
1210 _GL_CXXALIASWARN (fmod);
1212 # undef fmod macro
1214 _GL_WARN_ON_USE (fmod, "fmod has portability problems - "
1215 "use gnulib module fmod fo
[all...]
/external/bison/lib/
H A Dmath.in.h890 # undef fmod macro
891 # define fmod rpl_fmod macro
893 _GL_FUNCDECL_RPL (fmod, double, (double x, double y));
894 _GL_CXXALIAS_RPL (fmod, double, (double x, double y));
896 _GL_CXXALIAS_SYS (fmod, double, (double x, double y));
898 _GL_CXXALIASWARN (fmod); variable
900 # undef fmod macro
902 _GL_WARN_ON_USE (fmod, "fmod has portability problems - "
903 "use gnulib module fmod fo
[all...]
/external/bison/linux-lib/
H A Dmath.h1202 # undef fmod
1203 # define fmod rpl_fmod
1205 _GL_FUNCDECL_RPL (fmod, double, (double x, double y));
1206 _GL_CXXALIAS_RPL (fmod, double, (double x, double y));
1208 _GL_CXXALIAS_SYS (fmod, double, (double x, double y));
1210 _GL_CXXALIASWARN (fmod);
1212 # undef fmod macro
1214 _GL_WARN_ON_USE (fmod, "fmod has portability problems - "
1215 "use gnulib module fmod fo
[all...]
/external/eigen/Eigen/src/Core/
H A DMathFunctions.h1245 T fmod(const T& a, const T& b) { function in namespace:Eigen::numext
1246 EIGEN_USING_STD_MATH(fmod);
1247 return fmod(a, b);
1253 float fmod(const float& a, const float& b) { function in namespace:Eigen::numext
1259 double fmod(const double& a, const double& b) { function in namespace:Eigen::numext
1260 return ::fmod(a, b);
/external/libcxx/test/std/depr/depr.c.headers/
H A Dmath_h.pass.cpp43 Ambiguous fmod(Ambiguous, Ambiguous){ return Ambiguous(); } function
305 static_assert((std::is_same<decltype(fmod((float)0, (float)0)), float>::value), "");
306 static_assert((std::is_same<decltype(fmod((bool)0, (float)0)), double>::value), "");
307 static_assert((std::is_same<decltype(fmod((unsigned short)0, (double)0)), double>::value), "");
308 static_assert((std::is_same<decltype(fmod((int)0, (long double)0)), long double>::value), "");
309 static_assert((std::is_same<decltype(fmod((float)0, (unsigned int)0)), double>::value), "");
310 static_assert((std::is_same<decltype(fmod((double)0, (long)0)), double>::value), "");
311 static_assert((std::is_same<decltype(fmod((long double)0, (unsigned long)0)), long double>::value), "");
312 static_assert((std::is_same<decltype(fmod((int)0, (long long)0)), double>::value), "");
313 static_assert((std::is_same<decltype(fmod((in
[all...]
/external/libcxx/test/std/numerics/c.math/
H A Dcmath.pass.cpp44 Ambiguous fmod(Ambiguous, Ambiguous){ return Ambiguous(); } function
307 static_assert((std::is_same<decltype(std::fmod((float)0, (float)0)), float>::value), "");
308 static_assert((std::is_same<decltype(std::fmod((bool)0, (float)0)), double>::value), "");
309 static_assert((std::is_same<decltype(std::fmod((unsigned short)0, (double)0)), double>::value), "");
310 static_assert((std::is_same<decltype(std::fmod((int)0, (long double)0)), long double>::value), "");
311 static_assert((std::is_same<decltype(std::fmod((float)0, (unsigned int)0)), double>::value), "");
312 static_assert((std::is_same<decltype(std::fmod((double)0, (long)0)), double>::value), "");
313 static_assert((std::is_same<decltype(std::fmod((long double)0, (unsigned long)0)), long double>::value), "");
314 static_assert((std::is_same<decltype(std::fmod((int)0, (long long)0)), double>::value), "");
315 static_assert((std::is_same<decltype(std::fmod((in
[all...]
/external/eigen/unsupported/test/mpreal/
H A Dmpreal.h414 friend const mpreal fmod (const mpreal& x, const mpreal& y, mp_rnd_t rnd_mode);
2412 return fmod(x, y, rnd_mode);
2440 inline const mpreal fmod (const mpreal& x, const mpreal& y, mp_rnd_t rnd_mode = mpreal::get_default_rnd()) function in namespace:mpfr

Completed in 352 milliseconds