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

/freebsd-current/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 in inherits:false_type
23 template <> struct __libcpp_is_unsigned_integer<unsigned char> : public true_type {}; struct in inherits:true_type
24 template <> struct __libcpp_is_unsigned_integer<unsigned short> : public true_type {}; struct in inherits:true_type
25 template <> struct __libcpp_is_unsigned_integer<unsigned int> : public true_type {}; struct in inherits:true_type
26 template <> struct __libcpp_is_unsigned_integer<unsigned long> : public true_type {}; struct in inherits:true_type
27 template <> struct __libcpp_is_unsigned_integer<unsigned long long> : public true_type {}; struct in inherits:true_type
29 template <> struct __libcpp_is_unsigned_integer<__uint128_t> : public true_type {}; struct in inherits:true_type
/freebsd-current/contrib/llvm-project/libcxx/include/__concepts/
H A Darithmetic.h44 concept __libcpp_unsigned_integer = __libcpp_is_unsigned_integer<_Tp>::value;
/freebsd-current/contrib/llvm-project/libcxx/include/__bit/
H A Drotate.h25 static_assert(__libcpp_is_unsigned_integer<_Tp>::value, "__rotr requires an unsigned integer type");
H A Dcountl.h57 static_assert(__libcpp_is_unsigned_integer<_Tp>::value, "__countl_zero requires an unsigned integer type");

Completed in 109 milliseconds