Home
last modified time | relevance | path

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

/external/harfbuzz_ng/src/
Dhb-dsalgs.hh299 template <typename T> struct hb_is_signed;
300 template <> struct hb_is_signed<signed char> { enum { value = true }; }; struct
301 template <> struct hb_is_signed<signed short> { enum { value = true }; }; argument
302 template <> struct hb_is_signed<signed int> { enum { value = true }; }; struct
303 template <> struct hb_is_signed<signed long> { enum { value = true }; }; argument
304 template <> struct hb_is_signed<unsigned char> { enum { value = false }; }; struct
305 template <> struct hb_is_signed<unsigned short> { enum { value = false }; }; argument
306 template <> struct hb_is_signed<unsigned int> { enum { value = false }; }; argument
307 template <> struct hb_is_signed<unsigned long> { enum { value = false }; }; struct
316 template <> struct hb_is_signed<__int8> { enum { value = true }; }; struct
[all …]
Dhb-open-type.hh64 typedef typename hb_signedness_int<hb_is_signed<Type>::value>::value wide_type;