• Home
  • Raw
  • Download

Lines Matching refs:static

51     static const int value = 0;
54 // Specialization that can be used to initialize static constant at
56 template<> struct digits10<int, 8, false> { static const int value = 3; };
57 template<> struct digits10<int, 8, true> { static const int value = 3; };
58 template<> struct digits10<int, 16, false> { static const int value = 5; };
59 template<> struct digits10<int, 16, true> { static const int value = 5; };
60 template<> struct digits10<int, 32, false> { static const int value = 10; };
61 template<> struct digits10<int, 32, true> { static const int value = 10; };
62 template<> struct digits10<int, 64, false> { static const int value = 20; };
63 template<> struct digits10<int, 64, true> { static const int value = 19; };
71 static const bool is_specialized = false;
74 static const bool is_signed = false;
77 static const bool is_integer = false;
83 static const int digits = 0;
87 static const int digits10 = 0;
97 static _T min() { return static_cast<_T>(0); }
100 static _T max() { return static_cast<_T>(0); }
109 static const bool is_specialized = true;
111 static float min() { return __FLT_MIN__; }
112 static float max() { return __FLT_MAX__; }
114 static const bool is_signed = true;
115 static const bool is_integer = false;
117 static const int digits = __FLT_MANT_DIG__;
118 static const int digits10 = __FLT_DIG__;
125 static const bool is_specialized = true;
127 static double min() { return __DBL_MIN__; }
128 static double max() { return __DBL_MAX__; }
130 static const bool is_signed = true;
131 static const bool is_integer = false;
133 static const int digits = __DBL_MANT_DIG__;
134 static const int digits10 = __DBL_DIG__;
141 static const bool is_specialized = true;
143 static int min() { return INT_MIN; }
144 static int max() { return INT_MAX; }
146 static const bool is_signed = true;
147 static const bool is_integer = true;
149 static const int digits = static_cast<int>(sizeof(int) * CHAR_BIT);
150 static const int digits10 = digits10<int, digits, is_signed>::value;
157 static const bool is_specialized = true;
159 static unsigned int min() { return 0; }
160 static unsigned int max() { return UINT_MAX; }
162 static const bool is_signed = false;
163 static const bool is_integer = true;
165 static const int digits = static_cast<int>(sizeof(unsigned int) * CHAR_BIT);
166 static const int digits10 = digits10<int, digits, is_signed>::value;
173 static const bool is_specialized = true;
175 static long min() { return LONG_MIN; }
176 static long max() { return LONG_MAX; }
178 static const bool is_signed = true;
179 static const bool is_integer = true;
181 static const int digits = LONG_BIT;
182 static const int digits10 = digits10<int, digits, is_signed>::value;
189 static const bool is_specialized = true;
191 static unsigned long min() { return 0; }
192 static unsigned long max() { return ULONG_MAX; }
194 static const bool is_signed = true;
195 static const bool is_integer = true;
197 static const int digits = LONG_BIT;
198 static const int digits10 = digits10<int, digits, is_signed>::value;
205 static const bool is_specialized = true;
207 static long long min() { return LLONG_MIN; }
208 static long long max() { return LLONG_MAX; }
210 static const bool is_signed = true;
211 static const bool is_integer = true;
213 static const int digits = static_cast<int>(sizeof(long long) * CHAR_BIT);
214 static const int digits10 = digits10<int, digits, is_signed>::value;
221 static const bool is_specialized = true;
223 static unsigned long long min() { return 0; }
224 static unsigned long long max() { return ULLONG_MAX; }
226 static const bool is_signed = true;
227 static const bool is_integer = true;
229 static const int digits = static_cast<int>(sizeof(unsigned long long) * CHAR_BIT);
230 static const int digits10 = digits10<int, digits, is_signed>::value;