/freebsd/contrib/llvm-project/libcxx/include/__type_traits/ |
H A D | is_unsigned.h | 26 struct _LIBCPP_TEMPLATE_VIS is_unsigned : _BoolConstant<__is_unsigned(_Tp)> {}; struct 48 struct _LIBCPP_TEMPLATE_VIS is_unsigned : public __libcpp_is_unsigned<_Tp> {}; 52 inline constexpr bool is_unsigned_v = is_unsigned<_Tp>::value;
|
H A D | is_trivially_lexicographically_comparable.h | 49 is_unsigned<_Tp>::value> {};
|
H A D | make_unsigned.h | 97 using __copy_unsigned_t = __conditional_t<is_unsigned<_Tp>::value, __make_unsigned_t<_Up>, _Up>;
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | Bitfields.h | 120 template <typename T, unsigned Bits, bool = std::is_unsigned<T>::value> 122 static_assert(std::is_unsigned<T>::value, "T must be unsigned"); 157 static_assert(std::is_unsigned<StorageType>::value, 242 std::is_unsigned<IntegerType>::value,
|
H A D | CoalescingBitVector.h | 39 static_assert(std::is_unsigned<IndexT>::value,
|
/freebsd/contrib/llvm-project/libcxx/include/__charconv/ |
H A D | traits.h | 144 static_assert(is_unsigned<_Tp>::value, ""); 190 static_assert(is_unsigned<_Tp>::value, "cast to unsigned first");
|
H A D | from_chars_integral.h | 128 template <typename _Tp, __enable_if_t<is_unsigned<_Tp>::value, int> = 0> 174 template <typename _Tp, __enable_if_t<is_unsigned<_Tp>::value, int> = 0>
|
/freebsd/contrib/llvm-project/libcxx/include/__random/ |
H A D | is_valid.h | 16 #include <__type_traits/is_unsigned.h> 89 __enable_if_t< is_unsigned<typename _Gp::result_type>::value &&
|
H A D | seed_seq.h | 84 static_assert(is_unsigned<_ValueType>::value && sizeof(_ValueType) >= sizeof(uint32_t), in generate()
|
H A D | linear_congruential_engine.h | 246 static_assert(is_unsigned<_UIntType>::value, "_UIntType must be unsigned type");
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | Scalar.cpp | 279 bool is_unsigned) { in ToAPInt() argument 280 llvm::APSInt result(bits, is_unsigned); in ToAPInt() 297 return ToAPInt(m_float, sizeof(T) * 8, std::is_unsigned<T>::value) in GetAs()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | Scalar.h | 41 std::is_unsigned<T>::value); in MakeAPSInt()
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | type_traits | 84 template <class T> struct is_unsigned; 319 = is_unsigned<T>::value; // C++17 477 #include <__type_traits/is_unsigned.h>
|
H A D | module.modulemap | 2036 …_traits_is_unsigned [system] { header "__type_traits/is_unsigned.h" }
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | type_traits.cppm |
|
/freebsd/contrib/llvm-project/llvm/lib/Demangle/ |
H A D | ItaniumDemangle.cpp | 109 template <class T> std::enable_if_t<std::is_unsigned<T>::value> print(T N) { in print()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
H A D | DWARFASTParserClang.cpp | 2749 const bool is_unsigned = qt->isUnsignedIntegerType(); in ExtractIntFromFormValue() local 2766 llvm::APInt result(max_bit_size, form_value.Unsigned(), !is_unsigned); in ExtractIntFromFormValue() 2773 is_unsigned ? result.getActiveBits() : result.getSignificantBits(); in ExtractIntFromFormValue() 2777 std::string value_as_str = is_unsigned in ExtractIntFromFormValue() 2782 (is_unsigned ? "unsigned" : "signed"), in ExtractIntFromFormValue()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
H A D | GDBRemoteCommunicationServerCommon.cpp | 774 static_assert(std::is_unsigned<typename T::value_type>::value, in fill_clamp()
|
/freebsd/lib/libc++/ |
H A D | Makefile | 1304 TTR_HEADERS+= is_unsigned.h
|
H A D | libcxx.imp | 810 { include: [ "<__type_traits/is_unsigned.h>", "private", "<type_traits>", "public" ] },
|
/freebsd/sys/cddl/dev/dtrace/x86/ |
H A D | dis_tables.c | 6492 int is_unsigned = 0; in isunsigned_op() local 6508 is_unsigned = 1; in isunsigned_op() 6511 return (is_unsigned); in isunsigned_op()
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/ |
H A D | StdSymbolMap.inc | 1778 SYMBOL(is_unsigned, std::, <type_traits>)
|