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

/external/webkit/JavaScriptCore/wtf/
H A DMathExtras.h159 // Work around a bug in the Microsoft CRT, where fmod(x, +-infinity) yields NaN instead of x.
160 inline double wtf_fmod(double x, double y) { return (!isinf(x) && isinf(y)) ? x : fmod(x, y); }
166 #define fmod(x, y) wtf_fmod(x, y) macro

Completed in 22 milliseconds