Searched defs:mintype (Results 1 - 1 of 1) sorted by relevance

/frameworks/av/media/libstagefright/codec2/include/
H A DC2.h183 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
[all...]

Completed in 60 milliseconds