Home
last modified time | relevance | path

Searched refs:wtf_pow (Results 1 – 2 of 2) sorted by relevance

/external/webkit/JavaScriptCore/wtf/
DMathExtras.h152 inline double wtf_pow(double x, double y) { return y == 0 ? 1 : pow(x, y); } in wtf_pow() function
156 #define pow(x, y) wtf_pow(x, y)
/external/webkit/JavaScriptCore/
DChangeLog-2008-08-1029484 * wtf/MathExtras.h: (wtf_pow): Add a special case for MSVC, which has