Home
last modified time | relevance | path

Searched refs:HashValue (Results 1 – 12 of 12) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/clangd/index/
H A DSymbolID.h38 return HashValue == Sym.HashValue;
42 return HashValue < Sym.HashValue;
59 std::array<uint8_t, RawSize> HashValue{};
H A DSymbolID.cpp19 memcpy(HashValue.data(), Hash.data(), RawSize); in SymbolID()
23 return llvm::StringRef(reinterpret_cast<const char *>(HashValue.data()), in raw()
30 memcpy(ID.HashValue.data(), Raw.data(), RawSize); in fromRaw()
/llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/
H A DAccelTable.cpp38 Uniques.push_back(E.second.HashValue); in computeBucketCount()
84 return LHS->HashValue < RHS->HashValue; in finalize()
250 uint32_t HashValue = Hash->HashValue; in emitHashes() local
254 Asm->emitInt32(HashValue); in emitHashes()
255 PrevHash = HashValue; in emitHashes()
266 uint32_t HashValue = Hash->HashValue; in emitOffsets() local
269 PrevHash = HashValue; in emitOffsets()
318 uint32_t HashValue = HD->HashValue; in emitBuckets() local
319 if (PrevHash != HashValue) in emitBuckets()
321 PrevHash = HashValue; in emitBuckets()
[all …]
/llvm-project-15.0.7/compiler-rt/lib/ubsan/
H A Dubsan_type_hash.h19 typedef uptr HashValue; typedef
51 bool checkDynamicType(void *Object, void *Type, HashValue Hash);
65 HashValue __ubsan_vptr_type_cache[VptrTypeCacheSize];
H A Dubsan_type_hash_itanium.cpp97 static __ubsan::HashValue *getTypeCacheHashTableBucket(__ubsan::HashValue V) { in getTypeCacheHashTableBucket()
99 static __ubsan::HashValue __ubsan_vptr_hash_set[HashTableSize]; in getTypeCacheHashTableBucket()
211 bool __ubsan::checkDynamicType(void *Object, void *Type, HashValue Hash) { in checkDynamicType()
216 HashValue *Bucket = getTypeCacheHashTableBucket(Hash); in checkDynamicType()
H A Dubsan_type_hash.cpp25 __ubsan::HashValue
H A Dubsan_type_hash_win.cpp40 bool __ubsan::checkDynamicType(void *Object, void *Type, HashValue Hash) { in checkDynamicType()
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DAccelTable.h141 uint32_t HashValue; member
146 : Name(Name), HashValue(Hash(Name.getString())) {} in HashData()
H A DSelectionDAG.h104 unsigned HashValue;
109 HashValue = ID.ComputeHash();
127 if (X.HashValue != IDHash)
133 return X.HashValue;
/llvm-project-15.0.7/llvm/unittests/CodeGen/
H A DMachineOperandTest.cpp403 TEST(MachineOperandTest, HashValue) { in TEST() argument
/llvm-project-15.0.7/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp333 unsigned HashValue = djbHash(Key); in equal_range() local
334 unsigned Bucket = HashValue % Hdr.BucketCount; in equal_range()
/llvm-project-15.0.7/llvm/unittests/ADT/
H A DOptionalTest.cpp795 TEST(OptionalTest, HashValue) { in TEST() argument