Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libcxx/include/__type_traits/
H A Dis_signed_integer.h22 template <class _Tp> struct __libcpp_is_signed_integer : public false_type {}; struct
23 template <> struct __libcpp_is_signed_integer<signed char> : public true_type {};
24 template <> struct __libcpp_is_signed_integer<signed short> : public true_type {};
25 template <> struct __libcpp_is_signed_integer<signed int> : public true_type {};
26 template <> struct __libcpp_is_signed_integer<signed long> : public true_type {};
27 template <> struct __libcpp_is_signed_integer<signed long long> : public true_type {};
29 template <> struct __libcpp_is_signed_integer<__int128_t> : public true_type {};
/freebsd/contrib/llvm-project/libcxx/include/__concepts/
H A Darithmetic.h47 concept __libcpp_signed_integer = __libcpp_is_signed_integer<_Tp>::value;