Home
last modified time | relevance | path

Searched refs:is_unsigned (Results 1 – 22 of 22) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__type_traits/
H A Dis_unsigned.h26 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 Dis_trivially_lexicographically_comparable.h49 is_unsigned<_Tp>::value> {};
H A Dmake_unsigned.h97 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 DBitfields.h120 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 DCoalescingBitVector.h39 static_assert(std::is_unsigned<IndexT>::value,
/freebsd/contrib/llvm-project/libcxx/include/__charconv/
H A Dtraits.h144 static_assert(is_unsigned<_Tp>::value, "");
190 static_assert(is_unsigned<_Tp>::value, "cast to unsigned first");
H A Dfrom_chars_integral.h128 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 Dis_valid.h16 #include <__type_traits/is_unsigned.h>
89 __enable_if_t< is_unsigned<typename _Gp::result_type>::value &&
H A Dseed_seq.h84 static_assert(is_unsigned<_ValueType>::value && sizeof(_ValueType) >= sizeof(uint32_t), in generate()
H A Dlinear_congruential_engine.h246 static_assert(is_unsigned<_UIntType>::value, "_UIntType must be unsigned type");
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DScalar.cpp279 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 DScalar.h41 std::is_unsigned<T>::value); in MakeAPSInt()
/freebsd/contrib/llvm-project/libcxx/include/
H A Dtype_traits84 template <class T> struct is_unsigned;
319 = is_unsigned<T>::value; // C++17
477 #include <__type_traits/is_unsigned.h>
H A Dmodule.modulemap2036 …_traits_is_unsigned [system] { header "__type_traits/is_unsigned.h" }
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dtype_traits.cppm
/freebsd/contrib/llvm-project/llvm/lib/Demangle/
H A DItaniumDemangle.cpp109 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 DDWARFASTParserClang.cpp2749 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 DGDBRemoteCommunicationServerCommon.cpp774 static_assert(std::is_unsigned<typename T::value_type>::value, in fill_clamp()
/freebsd/lib/libc++/
H A DMakefile1304 TTR_HEADERS+= is_unsigned.h
H A Dlibcxx.imp810 { include: [ "<__type_traits/is_unsigned.h>", "private", "<type_traits>", "public" ] },
/freebsd/sys/cddl/dev/dtrace/x86/
H A Ddis_tables.c6492 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 DStdSymbolMap.inc1778 SYMBOL(is_unsigned, std::, <type_traits>)