Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/libcxx/include/
Dmath.h1261 inline _LIBCPP_INLINE_VISIBILITY float fma(float __lcpp_x, float __lcpp_y, float __lcpp_z) _N… in fma() argument
1264 return __builtin_fmaf(__lcpp_x, __lcpp_y, __lcpp_z); in fma()
1266 return ::fmaf(__lcpp_x, __lcpp_y, __lcpp_z); in fma()
1269 …IBILITY long double fma(long double __lcpp_x, long double __lcpp_y, long double __lcpp_z) _NOEXCEPT in fma() argument
1272 return __builtin_fmal(__lcpp_x, __lcpp_y, __lcpp_z); in fma()
1274 return ::fmal(__lcpp_x, __lcpp_y, __lcpp_z); in fma()
1287 fma(_A1 __lcpp_x, _A2 __lcpp_y, _A3 __lcpp_z) _NOEXCEPT in fma() argument
1294 return __builtin_fma((__result_type)__lcpp_x, (__result_type)__lcpp_y, (__result_type)__lcpp_z); in fma()
1296 return ::fma((__result_type)__lcpp_x, (__result_type)__lcpp_y, (__result_type)__lcpp_z); in fma()
1603 …float __lcpp_x, float __lcpp_y, int* __lcpp_z) _NOEXCEPT {return ::remquof(__lcpp_x, _… in remquo() argument
[all …]
Dcmath545 hypot(_A1 __lcpp_x, _A2 __lcpp_y, _A3 __lcpp_z) _NOEXCEPT
551 return hypot((__result_type)__lcpp_x, (__result_type)__lcpp_y, (__result_type)__lcpp_z);