Home
last modified time | relevance | path

Searched defs:hypot (Results 1 – 7 of 7) sorted by relevance

/llvm-project/libcxx/include/__math/
H A Dhypot.h26 inline _LIBCPP_HIDE_FROM_ABI float hypot(float __x, float __y) _NOEXCEPT { return __builtin_hypotf(__x, __y); } hypot() function
29 _LIBCPP_HIDE_FROM_ABI double hypot(double __x, double __y) _NOEXCEPT { hypot() function
33 inline _LIBCPP_HIDE_FROM_ABI long double hypot(long double __x, long double __y) _NOEXCEPT { hypot() function
38 inline _LIBCPP_HIDE_FROM_ABI typename __promote<_A1, _A2>::type hypot(_A1 __x, _A2 __y) _NOEXCEPT { hypot() function
[all...]
/llvm-project/libcxx/test/std/numerics/c.math/
H A Dcmath.pass.cpp84 Ambiguous hypot(Ambiguous, Ambiguous){ return Ambiguous(); } hypot() function
85 Ambiguous hypot(Ambiguous, Ambiguous, Ambiguous){ return Ambiguous(); } hypot() function
[all...]
/llvm-project/libc/src/math/nvptx/
H A Dnvptx.h48 LIBC_INLINE double hypot(double x, double y) { return __nv_hypot(x, y); } hypot() function
/llvm-project/libcxx/test/std/depr/depr.c.headers/
H A Dmath_h.pass.cpp84 Ambiguous hypot(Ambiguous, Ambiguous){ return Ambiguous(); } in hypot() function
/llvm-project/libc/utils/MPFRWrapper/
H A DMPFRUtils.cpp367 MPFRNumber hypot(const MPFRNumber &b) { hypot() function in LIBC_NAMESPACE::testing::mpfr::MPFRNumber
/llvm-project/clang/lib/Headers/
H A D__clang_cuda_math.h139 __DEVICE__ double hypot(double __a, double __b) { return __nv_hypot(__a, __b); } hypot() function
H A Dtgmath.h833 #define hypot(__x, __y) __tg_hypot(__tg_promote2((__x), (__y))(__x), \ macro