C2.h | 183 typedef wide_type mintype; typedef in struct:android::c2_types 199 std::is_signed<T>::value, wide_type, narrow_type>::type mintype; 219 typedef typename c2_types<typename c2_types<T, U>::mintype, V...>::mintype mintype; 252 inline constexpr typename c2_types<T, U>::mintype c2_min(const T a, const U b) { 256 static_cast<typename c2_types<T, U>::mintype>(a_ < b_ ? a_ : b_); 272 constexpr typename c2_types<T, U, V...>::mintype c2_min(const T a, const U b, const V ... c) { 273 typedef typename c2_types<U, V...>::mintype rest_type; 277 static_cast<typename c2_types<T, rest_type>::mintype>(a_ < b_ ? a_ : b_) [all...] |