/llvm-project/clang/test/SemaCXX/ |
H A D | bitfield.cpp | 6 typedef unsigned Unsigned; typedef 11 typedef __typeof__(t.n) Unsigned; // Bitfield is unsigned typedef 16 typedef __typeof__(t.n = 0) Unsigned; // Assignment produces an lvalue... typedef 17 typedef __typeof__(t.n += 0) Unsigned; typedef 18 typedef __typeof__(t.n *= 0) Unsigned; typedef 23 typedef __typeof__(++t.n) Unsigned; // Increment is equivalent to compound-assignment. typedef 24 typedef __typeof__(--t.n) Unsigned; typedef 28 typedef __typeof__(t.n++) Unsigned; // Post-increment's result has the type typedef 29 typedef __typeof__(t.n--) Unsigned; // of the operand... typedef 30 typedef __typeof__(+(t.n++)) Unsigned; // ... and is not a bit-field (because typedef [all …]
|
/llvm-project/clang/test/Sema/ |
H A D | bitfield.c | 60 typedef unsigned Unsigned; typedef 77 typedef __typeof__(+(t5.n++)) Unsigned; // Post-increment is underspecified, but seems to typedef 78 typedef __typeof__(+(t5.n--)) Unsigned; // also act like compound-assignment. typedef
|
/llvm-project/llvm/include/llvm/ADT/ |
H A D | APSInt.h | 303 static APSInt getMaxValue(uint32_t numBits, bool Unsigned) { in getMaxValue() 311 static APSInt getMinValue(uint32_t numBits, bool Unsigned) { in getMinValue()
|
H A D | Bitfields.h | 99 using Unsigned = std::make_unsigned_t<T>; member
|
/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | APSIntType.h | 24 constexpr APSIntType(uint32_t Width, bool Unsigned) in APSIntType()
|
/llvm-project/mlir/include/mlir/Interfaces/Utils/ |
H A D | InferIntRangeCommon.h | 37 enum class CmpMode : uint32_t { Both, Signed, Unsigned }; enumerator
|
/llvm-project/clang/test/SemaTemplate/ |
H A D | temp-param-subst-linear.cpp | 12 template<unsigned> using Unsigned = unsigned; typedef
|
/llvm-project/llvm/include/llvm/IR/ |
H A D | ConstantRange.h | 327 enum PreferredRangeType { Smallest, Unsigned, Signed }; enumerator
|
/llvm-project/clang/unittests/ASTMatchers/Dynamic/ |
H A D | VariantValueTest.cpp | 18 TEST(VariantValueTest, Unsigned) { in TEST() argument
|
/llvm-project/compiler-rt/lib/sanitizer_common/tests/ |
H A D | sanitizer_leb128_test.cpp | 70 TYPED_TEST(Leb128Test, Unsigned) { in TYPED_TEST() argument
|
/llvm-project/clang/test/Index/ |
H A D | index-templates.cpp | 42 typedef unsigned Unsigned; typedef
|
/llvm-project/mlir/include/mlir/IR/ |
H A D | Diagnostics.h | 75 : kind(DiagnosticArgumentKind::Unsigned), opaqueVal(uint64_t(val)) {} in kind() argument 90 Unsigned, enumerator
|
/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
H A D | DWARFFormValue.h | 71 uint64_t Unsigned() const { return m_value.value.uval; } Unsigned() function
|
/llvm-project/llvm/include/llvm/Support/ |
H A D | ScaledNumber.h | 436 uint64_t Unsigned = N == INT64_MIN ? UINT64_C(1) << 63 : uint64_t(-N); in splitSigned() local 661 std::pair<uint64_t, bool> Unsigned = splitSigned(N); in scale() local 665 std::pair<uint64_t, bool> Unsigned = splitSigned(N); in scaleByInverse() local
|
/llvm-project/clang/include/clang/ASTMatchers/Dynamic/ |
H A D | VariantValue.h | 343 unsigned Unsigned; member
|
/llvm-project/lldb/tools/debugserver/source/ |
H A D | JSON.h | 124 enum class DataType : uint8_t { Unsigned, Signed, Double } m_data_type; enumerator
|
/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/ |
H A D | RISCVMatInt.cpp | 110 bool Unsigned = false; in generateInstSeqImpl() local
|
/llvm-project/llvm/lib/Target/NVPTX/ |
H A D | NVPTX.h | 119 Unsigned = 0, global() enumerator
|
/llvm-project/clang/lib/ASTMatchers/Dynamic/ |
H A D | VariantValue.cpp | 267 VariantValue::VariantValue(unsigned Unsigned) : Type(VT_Nothing) { in VariantValue()
|
/llvm-project/clang/include/clang/Basic/ |
H A D | Specifiers.h | 50 enum class TypeSpecifierSign { Unspecified, Signed, Unsigned }; enumerator
|
/llvm-project/llvm/lib/FileCheck/ |
H A D | FileCheckImpl.h | 44 Unsigned, enumerator
|
/llvm-project/flang/runtime/ |
H A D | edit-output.cpp | 116 using Unsigned = common::HostUnsignedIntType<8 * KIND>; in EditIntegerOutput() typedef
|
/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | DwarfUnit.cpp | 468 void DwarfUnit::addConstantValue(DIE &Die, bool Unsigned, uint64_t Val) { in addConstantValue() argument 479 void DwarfUnit::addConstantValue(DIE &Die, const APInt &Val, bool Unsigned) { in addConstantValue() argument
|
/llvm-project/llvm/lib/Target/ARM/ |
H A D | MVEGatherScatterLowering.cpp | 502 unsigned Unsigned = 1; tryCreateMaskedGatherOffset() local
|
/llvm-project/llvm/unittests/ADT/ |
H A D | StringRefTest.cpp | 632 } Unsigned[] = global() variable [all...] |