Searched refs:hb_is_signed (Results 1 – 2 of 2) sorted by relevance
299 template <typename T> struct hb_is_signed;300 template <> struct hb_is_signed<signed char> { enum { value = true }; }; struct301 template <> struct hb_is_signed<signed short> { enum { value = true }; }; argument302 template <> struct hb_is_signed<signed int> { enum { value = true }; }; struct303 template <> struct hb_is_signed<signed long> { enum { value = true }; }; argument304 template <> struct hb_is_signed<unsigned char> { enum { value = false }; }; struct305 template <> struct hb_is_signed<unsigned short> { enum { value = false }; }; argument306 template <> struct hb_is_signed<unsigned int> { enum { value = false }; }; argument307 template <> struct hb_is_signed<unsigned long> { enum { value = false }; }; struct316 template <> struct hb_is_signed<__int8> { enum { value = true }; }; struct[all …]
64 typedef typename hb_signedness_int<hb_is_signed<Type>::value>::value wide_type;