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

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DMathExtras.h165 // Work around a bug in the Microsoft CRT, where fmod(x, +-infinity) yields NaN instead of x.
166 inline double wtf_fmod(double x, double y) { return (!std::isinf(x) && std::isinf(y)) ? x : fmod(x, y); }
172 #define fmod(x, y) wtf_fmod(x, y) macro
305 double fmodValue = fmod(trunc(d), std::numeric_limits<unsigned long long>::max() + 1.0);
/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/clang/lib/Headers/
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/eigen/unsupported/test/mpreal/
H A Dmpreal.h405 friend const mpreal fmod (const mpreal& x, const mpreal& y, mp_rnd_t rnd_mode = mpreal::get_default_rnd());
2280 return fmod(x, y, rnd_mode);
2308 inline const mpreal fmod (const mpreal& x, const mpreal& y, mp_rnd_t rnd_mode) function in namespace:mpfr
/external/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h277 /// double fmod(double x, double y);
278 fmod, enumerator in enum:llvm::LibFunc::Func

Completed in 232 milliseconds