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

/external/webkit/Source/JavaScriptCore/wtf/
H A DMathExtras.h180 // Work around a bug in the Microsoft CRT, where fmod(x, +-infinity) yields NaN instead of x.
181 inline double wtf_fmod(double x, double y) { return (!isinf(x) && isinf(y)) ? x : fmod(x, y); }
187 #define fmod(x, y) wtf_fmod(x, y) macro
/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/clang/lib/include/
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/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h101 /// double fmod(double x, double y);
102 fmod, enumerator in enum:llvm::LibFunc::Func

Completed in 81 milliseconds