| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | Endian.h | 106 using make_unsigned_t = std::make_unsigned_t<value_type>; variable 127 make_unsigned_t<value_type> lowerVal = val[0] >> startBit; in readAtBitAlignment() 129 make_unsigned_t<value_type> numBitsFirstVal = in readAtBitAlignment() 134 make_unsigned_t<value_type> upperVal = in readAtBitAlignment() 135 val[1] & (((make_unsigned_t<value_type>)1 << startBit) - 1); in readAtBitAlignment() 163 val[0] &= ((make_unsigned_t<value_type>)1 << startBit) - 1; in writeAtBitAlignment() 164 make_unsigned_t<value_type> numBitsFirstVal = in writeAtBitAlignment() 166 make_unsigned_t<value_type> lowerVal = value; in writeAtBitAlignment() 179 val[1] &= ~(((make_unsigned_t<value_type>)1 << startBit) - 1); in writeAtBitAlignment() 181 make_unsigned_t<value_type> upperVal = value >> numBitsFirstVal; in writeAtBitAlignment() [all …]
|
| H A D | MathExtras.h | 576 using U = std::make_unsigned_t<T>; in AddOverflow() 602 using U = std::make_unsigned_t<T>; in SubOverflow() 625 using U = std::make_unsigned_t<T>; in MulOverflow()
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/__utility/ |
| H A D | cmp.h | 34 return __t < 0 ? false : make_unsigned_t<_Tp>(__t) == __u; in cmp_equal() 36 return __u < 0 ? false : __t == make_unsigned_t<_Up>(__u); in cmp_equal() 49 return __t < 0 ? true : make_unsigned_t<_Tp>(__t) < __u; in cmp_less() 51 return __u < 0 ? false : __t < make_unsigned_t<_Up>(__u); in cmp_less()
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/__ranges/ |
| H A D | subrange.h | 85 using _Size = conditional_t<_StoreSize, make_unsigned_t<iter_difference_t<_Iter>>, _Empty>; 100 …__convertible_to_non_slicing<_Iter> auto __iter, _Sent __sent, make_unsigned_t<iter_difference_t<_… in subrange() 125 …_LIBCPP_HIDE_FROM_ABI constexpr subrange(_Range&& __range, make_unsigned_t<iter_difference_t<_Iter… in subrange() 151 _LIBCPP_HIDE_FROM_ABI constexpr make_unsigned_t<iter_difference_t<_Iter>> size() const in size() 202 subrange(_Iter, _Sent, make_unsigned_t<iter_difference_t<_Iter>>) -> subrange<_Iter, _Sent, subrang… 213 subrange(_Range&&, make_unsigned_t<range_difference_t<_Range>>)
|
| H A D | zip_view.h | 196 using _CT = make_unsigned_t<common_type_t<decltype(__sizes)...>>; in requires() 207 using _CT = make_unsigned_t<common_type_t<decltype(__sizes)...>>; in requires()
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/__mdspan/ |
| H A D | extents.h | 231 using _To_u = make_unsigned_t<_To>; 232 using _From_u = make_unsigned_t<_From>; 282 using size_type = make_unsigned_t<index_type>; 389 (static_cast<make_unsigned_t<index_type>>(numeric_limits<index_type>::max()) < 390 static_cast<make_unsigned_t<_OtherIndexType>>(numeric_limits<_OtherIndexType>::max()))) 396 if constexpr (static_cast<make_unsigned_t<index_type>>(numeric_limits<index_type>::max()) < 397 … static_cast<make_unsigned_t<_OtherIndexType>>(numeric_limits<_OtherIndexType>::max())) {
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/__format/ |
| H A D | formatter_char.h | 56 static_cast<unsigned>(static_cast<make_unsigned_t<_CharT>>(__value)), in format() 61 …static_cast<make_unsigned_t<_CharT>>(__value), __ctx, __parser_.__get_parsed_std_specifications(__… in format()
|
| H A D | formatter_integral.h | 138 if (__value > static_cast<make_unsigned_t<_CharT>>(numeric_limits<_CharT>::max())) 142 if (__value < 0 || static_cast<make_unsigned_t<_Tp>>(__value) > numeric_limits<_CharT>::max())
|
| H A D | write_escaped.h | 120 return static_cast<make_unsigned_t<_CharT>>(__value); in __to_char32()
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/__type_traits/ |
| H A D | make_unsigned.h | 86 using make_unsigned_t = __make_unsigned_t<_Tp>; variable
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/__numeric/ |
| H A D | midpoint.h | 40 using _Up = make_unsigned_t<_Tp>; in midpoint()
|
| H A D | gcd_lcm.h | 64 using _Wp = make_unsigned_t<_Rp>;
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/__atomic/ |
| H A D | aliases.h | 105 using atomic_unsigned_lock_free = atomic<make_unsigned_t<__contention_t_or_largest>>;
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | Bitfields.h | 99 using Unsigned = std::make_unsigned_t<T>;
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | NativeFormatting.cpp | 94 using UnsignedT = std::make_unsigned_t<T>; in write_signed()
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/__functional/ |
| H A D | boyer_moore_searcher.h | 69 using unsigned_key_type = make_unsigned_t<key_type>;
|
| /freebsd-14.2/contrib/llvm-project/libcxx/modules/std/ |
| H A D | type_traits.inc | 158 using std::make_unsigned_t;
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/ |
| H A D | AArch64AddressingModes.h | 788 int64_t Mask = ~int64_t(std::numeric_limits<std::make_unsigned_t<T>>::max()); in isSVECpyImm()
|
| H A D | AArch64InstPrinter.cpp | 2019 std::make_unsigned_t<T> HexValue = Value; in printImmSVE() 2065 typedef std::make_unsigned_t<T> UnsignedT; in printSVELogicalImm()
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/ |
| H A D | mdspan | 45 using size_type = make_unsigned_t<index_type>;
|
| H A D | type_traits | 198 using make_unsigned_t = typename make_unsigned<T>::type; // C++14
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteCommunicationServerCommon.cpp | 776 using UU = std::make_unsigned_t<U>; in fill_clamp()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/AsmParser/ |
| H A D | AArch64AsmParser.cpp | 1980 std::make_unsigned_t<T> Val = MCE->getValue(); in addLogicalImmOperands() 1989 std::make_unsigned_t<T> Val = ~MCE->getValue(); in addLogicalImmNotOperands()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/ |
| H A D | StdSymbolMap.inc | 2091 SYMBOL(make_unsigned_t, std::, <type_traits>)
|