Searched refs:UINT2 (Results 1 – 2 of 2) sorted by relevance
1129 template <typename INT2, typename UINT2, bool NEG2>1132 template <typename INT2, typename UINT2>1133 struct ToUnsignedT<INT2, UINT2, false> {1134 static UINT2 ToUnsigned(INT2 value) { in ToUnsigned()1135 return static_cast<UINT2>(value); in ToUnsigned()1139 template <typename INT2, typename UINT2>1140 struct ToUnsignedT<INT2, UINT2, true> {1141 static UINT2 ToUnsigned(INT2 value) { in ToUnsigned()1142 return static_cast<UINT2>(value < 0 ? -value : value); in ToUnsigned()
28 typedef unsigned short int UINT2; typedef