Home
last modified time | relevance | path

Searched refs:__make_unsigned_t (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__type_traits/
H A Dmake_unsigned.h31 using __make_unsigned_t = __make_unsigned(_Tp); variable
75 using __make_unsigned_t = __copy_cv_t<_Tp, typename __make_unsigned<__remove_cv_t<_Tp> >::type>;
81 using type _LIBCPP_NODEBUG = __make_unsigned_t<_Tp>;
86 using make_unsigned_t = __make_unsigned_t<_Tp>;
91 _LIBCPP_HIDE_FROM_ABI constexpr __make_unsigned_t<_Tp> __to_unsigned_like(_Tp __x) noexcept { in __to_unsigned_like()
92 return static_cast<__make_unsigned_t<_Tp> >(__x); in __to_unsigned_like()
97 using __copy_unsigned_t = __conditional_t<is_unsigned<_Tp>::value, __make_unsigned_t<_Up>, _Up>;
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/
H A Dhalf_positive.h27 return static_cast<_Integral>(static_cast<__make_unsigned_t<_Integral> >(__value) / 2);
/freebsd/contrib/llvm-project/libcxx/include/__random/
H A Duniform_int_distribution.h213 typedef __conditional_t<sizeof(result_type) <= sizeof(uint32_t), uint32_t, __make_unsigned_t<result_type> > _UIntType; in b()