Lines Matching refs:hypot
50 // All the other hypot stuff is going to be at file scope, so follow along here.
53 extern "C" double hypot(double x, double y);
383 _STLP_DMATH_INLINE2(hypot)
495 # pragma warning (disable : 4996) // hypot is deprecated.
497 _STLP_MATH_INLINE2XX(float, hypot, hypot)
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(x * x + y * y); }
505 _STLP_DEF_MATH_INLINE2(hypot, hypot)
508 inline double hypot(double __x, double __y) { return _hypot(__x,__y); }
509 _STLP_DEF_MATH_INLINE2(hypot, _hypot)
569 macro defined with aC++, hypot() is not declared.
574 using ::hypot;