Home
last modified time | relevance | path

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

/external/oboe/samples/RhythmGame/third_party/glm/detail/
Dtype_int.hpp129 struct make_unsigned struct
133 struct make_unsigned<char> struct
135 typedef unsigned char type;
139 struct make_unsigned<short> struct
141 typedef unsigned short type;
145 struct make_unsigned<int> struct
147 typedef unsigned int type;
151 struct make_unsigned<long> struct
153 typedef unsigned long type;
157 struct make_unsigned<unsigned char> struct
[all …]
/external/flatbuffers/include/flatbuffers/
Dstl_emulation.h142 template <typename T> using make_unsigned = std::make_unsigned<T>; variable
156 template<typename T> struct make_unsigned { struct
160 template<> struct make_unsigned<char> { using type = unsigned char; }; argument