| /llvm-project-15.0.7/clang/test/Analysis/ |
| H A D | keychainAPI.m | 24 UInt32 *length, 59 UInt32 *length, 76 UInt32 length; 96 UInt32 length; 108 UInt32 length; 122 UInt32 length; 165 UInt32 length; 180 UInt32 length; 204 UInt32 length; 225 UInt32 length; [all …]
|
| H A D | keychainAPI-diagnostic-visitor.m | 9 typedef unsigned int UInt32; typedef 18 UInt32 *length, 25 UInt32 length;
|
| H A D | cfref_rdar6080742.c | 8 typedef unsigned long UInt32; typedef 17 typedef UInt32 CFStringEncoding;
|
| H A D | uninit-vals.c | 84 typedef unsigned long UInt32; typedef 85 typedef UInt32 CFStringEncoding;
|
| H A D | mig.mm | 20 typedef uint32_t UInt32; typedef 73 virtual IOReturn registerNotificationPort(mach_port_t, UInt32, UInt32); 247 IOReturn registerNotificationPort(mach_port_t port, UInt32 x, UInt32 y) {
|
| H A D | retain-release-region-store.m | 13 typedef unsigned long UInt32; typedef 30 typedef UInt32 CFStringEncoding;
|
| /llvm-project-15.0.7/clang/docs/analyzer/checkers/ |
| H A D | seckeychainapi_example.m | 5 UInt32 length; 13 UInt32 *length = 0; 23 UInt32 *length = 0; 35 UInt32 *length = 0; 53 UInt32 *length = 0;
|
| /llvm-project-15.0.7/llvm/include/llvm/DebugInfo/PDB/ |
| H A D | PDBTypes.h | 405 UInt32, enumerator 437 explicit Variant(uint32_t V) : Type(PDB_VariantType::UInt32) { in Variant() 438 Value.UInt32 = V; in Variant() 464 uint32_t UInt32; member 478 case UInt32: in isIntegralType() 501 VARIANT_WIDTH(UInt32, 32u) in getBitWidth() 524 VARIANT_APSINT(UInt32, 32u, true) in toAPSInt() 538 case PDB_VariantType::UInt32: in toAPFloat() 568 VARIANT_EQUAL_CASE(UInt32)
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AVR/ |
| H A D | avr-rust-issue-123.ll | 20 %UInt32 = type <{ i32 }> 24 @delay = hidden global %UInt32 zeroinitializer, align 4 53 store i32 %tmp5, i32* getelementptr inbounds (%UInt32, %UInt32* @delay, i64 0, i32 0), align 4
|
| /llvm-project-15.0.7/clang/test/SemaCXX/ |
| H A D | neon-vector-types.cpp | 10 typedef unsigned long UInt32; typedef 22 const UInt32 len) in autoCorrelation2nd_Neon()
|
| /llvm-project-15.0.7/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | TypeIndex.h | 49 UInt32 = 0x0075, // 32 bit unsigned int enumerator 183 static TypeIndex UInt32() { return TypeIndex(SimpleTypeKind::UInt32); } in UInt32() function
|
| /llvm-project-15.0.7/clang/test/FixIt/ |
| H A D | format-darwin.m | 14 typedef unsigned int UInt32; typedef 21 typedef unsigned long UInt32; typedef 35 UInt32 getUInt32(void); 42 …printf("%s", getUInt32()); // expected-warning{{values of type 'UInt32' should not be used as form… 112 …printf("%lu", getUInt32()); // expected-warning{{values of type 'UInt32' should not be used as for… 172 …printf("%u", getUInt32()); // expected-warning{{values of type 'UInt32' should not be used as form… 219 …printf("%s", (UInt32)0); // expected-warning{{values of type 'UInt32' should not be used as format…
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | TypeProperties.td | 169 def : Property<"numElements", UInt32> { 234 def : Property<"numRows", UInt32> { 237 def : Property<"numColumns", UInt32> { 272 def : Property<"regParm", UInt32> { 460 def : Property<"dependence", UInt32> { 710 def : Property<"depth", UInt32> { 713 def : Property<"index", UInt32> { 750 def : Property<"numExpansions", Optional<UInt32>> { 915 def : Property <"numBits", UInt32> {
|
| H A D | PropertiesBase.td | 141 def UInt32 : CountPropertyType<"uint32_t">; 269 def : Property<"semantics", UInt32> { 311 def : Property<"semantics", UInt32> { 356 def : Property<"totalLength", UInt32> { 491 def : Property<"callIndex", UInt32> { 495 def : Property<"version", UInt32> { 507 def : Property<"offsetQuantity", UInt32> { 786 def : Property<"numExpansions", Optional<UInt32>> {
|
| /llvm-project-15.0.7/llvm/utils/unittest/googletest/include/gtest/internal/ |
| H A D | gtest-string.h | 159 static std::string FormatHexUInt32(UInt32 value);
|
| H A D | gtest-internal.h | 839 static const UInt32 kMaxRange = 1u << 31; 841 explicit Random(UInt32 seed) : state_(seed) {} in Random() 843 void Reseed(UInt32 seed) { state_ = seed; } in Reseed() 847 UInt32 Generate(UInt32 range); 850 UInt32 state_;
|
| /llvm-project-15.0.7/llvm/utils/unittest/googletest/src/ |
| H A D | gtest.cc | 333 UInt32 Random::Generate(UInt32 range) { in Generate() 1738 const UInt32 kMaxCodePoint1 = (static_cast<UInt32>(1) << 7) - 1; 1741 const UInt32 kMaxCodePoint2 = (static_cast<UInt32>(1) << (5 + 6)) - 1; 1744 const UInt32 kMaxCodePoint3 = (static_cast<UInt32>(1) << (4 + 2*6)) - 1; 1747 const UInt32 kMaxCodePoint4 = (static_cast<UInt32>(1) << (3 + 3*6)) - 1; 1752 inline UInt32 ChopLowBits(UInt32* bits, int n) { in ChopLowBits() 1753 const UInt32 low_bits = *bits & ((static_cast<UInt32>(1) << n) - 1); in ChopLowBits() 1764 std::string CodePointToUtf8(UInt32 code_point) { in CodePointToUtf8() 1807 const auto first_u = static_cast<UInt32>(first); in CreateCodePointFromUtf16SurrogatePair() 1809 const UInt32 mask = (1 << 10) - 1; in CreateCodePointFromUtf16SurrogatePair() [all …]
|
| H A D | gtest-internal-inl.h | 230 GTEST_API_ std::string CodePointToUtf8(UInt32 code_point); 326 static_cast<int>(random->Generate(static_cast<UInt32>(range_width))); in ShuffleRange()
|
| /llvm-project-15.0.7/clang/test/Analysis/Inputs/ |
| H A D | system-header-simulator-objc.h | 8 typedef unsigned int UInt32; typedef 39 typedef UInt32 CFStringEncoding;
|
| /llvm-project-15.0.7/llvm/lib/DebugInfo/CodeView/ |
| H A D | TypeIndex.cpp | 46 {"unsigned*", SimpleTypeKind::UInt32},
|
| /llvm-project-15.0.7/llvm/lib/DebugInfo/PDB/ |
| H A D | PDBExtras.cpp | 35 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, UInt32, OS) in operator <<() 379 case PDB_VariantType::UInt32: in operator <<() 380 OS << Value.Value.UInt32; in operator <<()
|
| /llvm-project-15.0.7/llvm/include/llvm/Analysis/ |
| H A D | TensorSpec.h | 41 M(uint32_t, UInt32) \
|
| /llvm-project-15.0.7/llvm/include/llvm/BinaryFormat/ |
| H A D | MsgPack.def | 58 HANDLE_MP_FIRST_BYTE(0xce, UInt32)
|
| /llvm-project-15.0.7/llvm/lib/BinaryFormat/ |
| H A D | MsgPackWriter.cpp | 79 EW.write(FirstByte::UInt32); in write()
|
| /llvm-project-15.0.7/lldb/unittests/SymbolFile/PDB/ |
| H A D | SymbolFilePDBTests.cpp | 140 case llvm::pdb::PDB_VariantType::UInt32: in GetGlobalConstantInteger() 141 return value.Value.UInt32; in GetGlobalConstantInteger()
|