Home | History | Annotate | Download | only in ext

Lines Matching refs:_Value

54   template<typename _Value>
58 static const _Value __min = __glibcxx_min(_Value);
59 static const _Value __max = __glibcxx_max(_Value);
63 static const bool __is_signed = __glibcxx_signed(_Value);
64 static const int __digits = __glibcxx_digits(_Value);
67 template<typename _Value>
68 const _Value __numeric_traits_integer<_Value>::__min;
70 template<typename _Value>
71 const _Value __numeric_traits_integer<_Value>::__max;
73 template<typename _Value>
74 const bool __numeric_traits_integer<_Value>::__is_signed;
76 template<typename _Value>
77 const int __numeric_traits_integer<_Value>::__digits;
99 template<typename _Value>
103 static const int __max_digits10 = __glibcxx_max_digits10(_Value);
107 static const int __digits10 = __glibcxx_digits10(_Value);
108 static const int __max_exponent10 = __glibcxx_max_exponent10(_Value);
111 template<typename _Value>
112 const int __numeric_traits_floating<_Value>::__max_digits10;
114 template<typename _Value>
115 const bool __numeric_traits_floating<_Value>::__is_signed;
117 template<typename _Value>
118 const int __numeric_traits_floating<_Value>::__digits10;
120 template<typename _Value>
121 const int __numeric_traits_floating<_Value>::__max_exponent10;
123 template<typename _Value>
125 : public __conditional_type<std::__is_integer<_Value>::__value,
126 __numeric_traits_integer<_Value>,
127 __numeric_traits_floating<_Value> >::__type