Home
last modified time | relevance | path

Searched refs:min_type (Results 1 – 2 of 2) sorted by relevance

/aosp12/frameworks/av/media/codec2/core/include/
H A DC2.h414 typedef wide_type min_type; // type for min(T...)
430 std::is_signed<T>::value, wide_type, narrow_type>::type min_type;
450 typedef typename c2_types<typename c2_types<T, U>::min_type, V...>::min_type min_type;
483 inline constexpr typename c2_types<T, U>::min_type c2_min(const T a, const U b) {
487 static_cast<typename c2_types<T, U>::min_type>(a_ < b_ ? a_ : b_);
503 constexpr typename c2_types<T, U, V...>::min_type c2_min(const T a, const U b, const V ... c) {
504 typedef typename c2_types<U, V...>::min_type rest_type;
508 static_cast<typename c2_types<T, rest_type>::min_type>(a_ < b_ ? a_ : b_);
/aosp12/bionic/libc/kernel/uapi/linux/
H A Dbtrfs.h281 __u32 min_type; member