Home
last modified time | relevance | path

Searched refs:__libcpp_is_unsigned_integer (Results 1 – 4 of 4) sorted by relevance

/freebsd-src/contrib/llvm-project/libcxx/include/__type_traits/
H A Dis_unsigned_integer.h22 template <class _Tp> struct __libcpp_is_unsigned_integer : public false_type {}; struct
23 template <> struct __libcpp_is_unsigned_integer<unsigned char> : public true_type {};
24 template <> struct __libcpp_is_unsigned_integer<unsigned short> : public true_type {};
25 template <> struct __libcpp_is_unsigned_integer<unsigned int> : public true_type {};
26 template <> struct __libcpp_is_unsigned_integer<unsigned long> : public true_type {};
27 template <> struct __libcpp_is_unsigned_integer<unsigned long long> : public true_type {};
29 template <> struct __libcpp_is_unsigned_integer<__uint128_t> : public true_type {};
/freebsd-src/contrib/llvm-project/libcxx/include/__concepts/
H A Darithmetic.h44 concept __libcpp_unsigned_integer = __libcpp_is_unsigned_integer<_Tp>::value;
/freebsd-src/contrib/llvm-project/libcxx/include/__bit/
H A Drotate.h28 static_assert(__libcpp_is_unsigned_integer<_Tp>::value, "__rotl requires an unsigned integer type"); in __rotr()
43 static_assert(__libcpp_is_unsigned_integer<_Tp>::value, "__rotr requires an unsigned integer type");
H A Dcountl.h64 static_assert(__libcpp_is_unsigned_integer<_Tp>::value, "__countl_zero requires an unsigned integer type"); in __countl_zero()