Searched refs:wtf_pow (Results 1 – 2 of 2) sorted by relevance
152 inline double wtf_pow(double x, double y) { return y == 0 ? 1 : pow(x, y); } in wtf_pow() function156 #define pow(x, y) wtf_pow(x, y)
29484 * wtf/MathExtras.h: (wtf_pow): Add a special case for MSVC, which has