Home
last modified time | relevance | path

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

/system/chre/external/flatbuffers/include/flatbuffers/
Dstl_emulation.h147 template <typename T> using make_unsigned = std::make_unsigned<T>; variable
161 template<typename T> struct make_unsigned { struct
165 template<> struct make_unsigned<char> { using type = unsigned char; }; argument
166 template<> struct make_unsigned<short> { using type = unsigned short; };
167 template<> struct make_unsigned<int> { using type = unsigned int; };
168 template<> struct make_unsigned<long> { using type = unsigned long; };
170 struct make_unsigned<long long> { using type = unsigned long long; };
184 template <typename T> struct make_unsigned : public std::make_unsigned<T> {};
/system/extras/simpleperf/
Dcmd_dumprecord.cpp92 template <typename T, typename UT = typename std::make_unsigned<T>::type>