Searched defs:V_TypeTraits (Results 1 – 1 of 1) sorted by relevance
62 template<typename _Tp> struct V_TypeTraits struct64 typedef _Tp int_type;65 typedef _Tp uint_type;66 typedef _Tp abs_type;67 typedef _Tp sum_type;69 enum { delta = 0, shift = 0 };71 static int_type reinterpret_int(_Tp x) { return x; } in reinterpret_int()72 static uint_type reinterpet_uint(_Tp x) { return x; } in reinterpet_uint()73 static _Tp reinterpret_from_int(int_type x) { return (_Tp)x; } in reinterpret_from_int()76 template<> struct V_TypeTraits<uchar> struct[all …]