Searched refs:hb_int_max (Results 1 – 2 of 2) sorted by relevance
188 template <typename T> struct hb_int_max;189 template <> struct hb_int_max<char> : hb_integral_constant<char, CHAR_MAX> {}; struct190 template <> struct hb_int_max<signed char> : hb_integral_constant<signed char, SCHAR_MAX> {}; struct191 template <> struct hb_int_max<unsigned char> : hb_integral_constant<unsigned char, UCHAR_MAX> {}; struct192 template <> struct hb_int_max<signed short> : hb_integral_constant<signed short, SHRT_MAX> {}; struct193 template <> struct hb_int_max<unsigned short> : hb_integral_constant<unsigned short, USHRT_MAX> {… struct194 template <> struct hb_int_max<signed int> : hb_integral_constant<signed int, INT_MAX> {}; struct195 template <> struct hb_int_max<unsigned int> : hb_integral_constant<unsigned int, UINT_MAX> {}; struct196 template <> struct hb_int_max<signed long> : hb_integral_constant<signed long, LONG_MAX> {}; struct197 template <> struct hb_int_max<unsigned long> : hb_integral_constant<unsigned long, ULONG_MAX> {}; struct[all …]
1240 vertices_[i].distance = hb_int_max (int64_t); in update_distances()