Lines Matching full:t
17 template<class T> inline constexpr T e_v = unspecified;
18 template<class T> inline constexpr T log2e_v = unspecified;
19 template<class T> inline constexpr T log10e_v = unspecified;
20 template<class T> inline constexpr T pi_v = unspecified;
21 template<class T> inline constexpr T inv_pi_v = unspecified;
22 template<class T> inline constexpr T inv_sqrtpi_v = unspecified;
23 template<class T> inline constexpr T ln2_v = unspecified;
24 template<class T> inline constexpr T ln10_v = unspecified;
25 template<class T> inline constexpr T sqrt2_v = unspecified;
26 template<class T> inline constexpr T sqrt3_v = unspecified;
27 template<class T> inline constexpr T inv_sqrt3_v = unspecified;
28 template<class T> inline constexpr T egamma_v = unspecified;
29 template<class T> inline constexpr T phi_v = unspecified;
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;
41 template<floating_point T> inline constexpr T inv_sqrt3_v<T> = see below;
42 template<floating_point T> inline constexpr T egamma_v<T> = see below;
43 template<floating_point T> inline constexpr T phi_v<T> = see below;
79 template <class T>
82 template <class T>
85 …static_assert(__false<T>, "A program that instantiates a primary template of a mathematical consta…
88 template <class T> inline constexpr T e_v = __illformed<T>{};
89 template <class T> inline constexpr T log2e_v = __illformed<T>{};
90 template <class T> inline constexpr T log10e_v = __illformed<T>{};
91 template <class T> inline constexpr T pi_v = __illformed<T>{};
92 template <class T> inline constexpr T inv_pi_v = __illformed<T>{};
93 template <class T> inline constexpr T inv_sqrtpi_v = __illformed<T>{};
94 template <class T> inline constexpr T ln2_v = __illformed<T>{};
95 template <class T> inline constexpr T ln10_v = __illformed<T>{};
96 template <class T> inline constexpr T sqrt2_v = __illformed<T>{};
97 template <class T> inline constexpr T sqrt3_v = __illformed<T>{};
98 template <class T> inline constexpr T inv_sqrt3_v = __illformed<T>{};
99 template <class T> inline constexpr T egamma_v = __illformed<T>{};
100 template <class T> inline constexpr T phi_v = __illformed<T>{};
102 template <class T>
103 concept __floating_point = is_floating_point_v<T>;
105 template <__floating_point T> inline constexpr T e_v<T> = 2.718281828459045235360287471352…
106 template <__floating_point T> inline constexpr T log2e_v<T> = 1.442695040888963407359924681001…
107 template <__floating_point T> inline constexpr T log10e_v<T> = 0.434294481903251827651128918916…
108 template <__floating_point T> inline constexpr T pi_v<T> = 3.141592653589793238462643383279…
109 template <__floating_point T> inline constexpr T inv_pi_v<T> = 0.318309886183790671537767526745…
110 template <__floating_point T> inline constexpr T inv_sqrtpi_v<T> = 0.564189583547756286948079451560…
111 template <__floating_point T> inline constexpr T ln2_v<T> = 0.693147180559945309417232121458…
112 template <__floating_point T> inline constexpr T ln10_v<T> = 2.302585092994045684017991454684…
113 template <__floating_point T> inline constexpr T sqrt2_v<T> = 1.414213562373095048801688724209…
114 template <__floating_point T> inline constexpr T sqrt3_v<T> = 1.732050807568877293527446341505…
115 template <__floating_point T> inline constexpr T inv_sqrt3_v<T> = 0.577350269189625764509148780501…
116 template <__floating_point T> inline constexpr T egamma_v<T> = 0.577215664901532860606512090082…
117 template <__floating_point T> inline constexpr T phi_v<T> = 1.618033988749894848204586834365…