Searched refs:floating_point (Results 1 – 8 of 8) sorted by relevance
21 constexpr bool result = std::floating_point<T>; in CheckFloatingPointQualifiers()26 static_assert(!std::floating_point<T&>); in CheckFloatingPointQualifiers()27 static_assert(!std::floating_point<const T&>); in CheckFloatingPointQualifiers()31 static_assert(!std::floating_point<T&&>); in CheckFloatingPointQualifiers()32 static_assert(!std::floating_point<const T&&>); in CheckFloatingPointQualifiers()36 static_assert(!std::floating_point<T*>); in CheckFloatingPointQualifiers()37 static_assert(!std::floating_point<const T*>); in CheckFloatingPointQualifiers()41 static_assert(!std::floating_point<T (*)()>); in CheckFloatingPointQualifiers()42 static_assert(!std::floating_point<T (&)()>); in CheckFloatingPointQualifiers()43 static_assert(!std::floating_point<T(&&)()>); in CheckFloatingPointQualifiers()[all …]
31 template<floating_point T> inline constexpr T e_v<T> = see below;32 template<floating_point T> inline constexpr T log2e_v<T> = see below;33 template<floating_point T> inline constexpr T log10e_v<T> = see below;34 template<floating_point T> inline constexpr T pi_v<T> = see below;35 template<floating_point T> inline constexpr T inv_pi_v<T> = see below;36 template<floating_point T> inline constexpr T inv_sqrtpi_v<T> = see below;37 template<floating_point T> inline constexpr T ln2_v<T> = see below;38 template<floating_point T> inline constexpr T ln10_v<T> = see below;39 template<floating_point T> inline constexpr T sqrt2_v<T> = see below;40 template<floating_point T> inline constexpr T sqrt3_v<T> = see below;[all …]
47 floating_point abs(floating_point x);49 floating_point acos (arithmetic x);53 floating_point asin (arithmetic x);57 floating_point atan (arithmetic x);65 floating_point ceil (arithmetic x);69 floating_point cos (arithmetic x);73 floating_point cosh (arithmetic x);77 floating_point exp (arithmetic x);101 floating_point log (arithmetic x);109 floating_point modf (floating_point value, floating_point* iptr);[all …]
45 concept floating_point = see below;
11 concept floating_point = std::is_same<T, float>::value || std::is_same<T, double>::value || std::is…18 std::floating_point auto con1();22 std::floating_point auto con1() { return 3.14f; } in con1()42 const std::floating_point auto* volatile con4();47 int req1(T t) requires std::floating_point<T>;
51 template <floating_point _Tp>58 template <floating_point _Tp>65 template <floating_point _Tp>105 template <floating_point _Fp>135 template <floating_point _Fp>602 template <floating_point _Tp, class _CharT>697 template <floating_point _Tp>
37 concept floating_point = is_floating_point_v<_Tp>; variable
231 double floating_point(long long a, int b) { in floating_point() function