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

/external/skia/src/core/
H A DSkFloat.h58 void sqrt() { fPacked = Sqrt(fPacked); } function in class:SkFloat
/external/stlport/src/
H A Dcomplex.cpp176 result._M_re = ::sqrt(0.5f * (mag + re));
179 result._M_im = ::sqrt(0.5f * (mag - re));
188 sqrt(const complex<float>& z) { return sqrtT(z); } function
191 sqrt(const complex<double>& z) { return sqrtT(z); } function
195 sqrt(const complex<long double>& z) { return sqrtT(z); } function
/external/stlport/stlport/stl/
H A D_cmath.h345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
379 _STLP_DMATH_INLINE(sqrt)
405 # if defined (sqrt)
406 inline double __stlp_sqrt(double __x) { return sqrt(__x); }
407 # undef sqrt macro
408 inline double sqrt(double __x) { return __stlp_sqrt(__x); } function
450 _STLP_DEF_MATH_INLINE(sqrt, sqrt)
498 inline long double hypot(long double x, long double y) { return sqrt(x * x + y * y); }
504 inline double hypot(double x, double y) { return sqrt(
[all...]

Completed in 95 milliseconds