Searched refs:Hash (Results 26 - 50 of 125) sorted by relevance

12345

/freebsd-12-stable/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningTool.cpp48 void handleContextHash(std::string Hash) override {}
89 void handleContextHash(std::string Hash) override {
90 ContextHash = std::move(Hash);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DBranchFolding.h58 unsigned Hash; member in class:llvm::BranchFolder::MergePotentialsElt
63 : Hash(h), Block(b) {}
65 unsigned getHash() const { return Hash; }
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DMergingTypeTableBuilder.cpp90 TypeIndex MergingTypeTableBuilder::insertRecordAs(hash_code Hash, argument
97 LocallyHashedType WeakHash{Hash, Record};
H A DTypeHashing.cpp44 // Hash any data that comes before this TiRef.
67 BytesToHash = Prev[TI.toArrayIndex()].Hash;
/freebsd-12-stable/lib/libsecureboot/efi/include/Protocol/
H A DHash.h4 The EFI Hash Service Binding Protocol is used to locate hashing services support
5 provided by a driver and to create and destroy instances of the EFI Hash Protocol
107 @retval EFI_SUCCESS Hash size returned successfully.
128 @param[in,out] Hash On input, if Extend is TRUE, then this parameter holds a pointer
134 @retval EFI_SUCCESS Hash returned successfully.
135 @retval EFI_INVALID_PARAMETER Message or Hash, HashAlgorithm is NULL or MessageSize is 0.
148 IN OUT EFI_HASH_OUTPUT *Hash
157 EFI_HASH_HASH Hash; member in struct:_EFI_HASH_PROTOCOL
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp141 W.printHex("Hash function", HashFunction);
242 uint32_t Hash = AccelSection.getU32(&HashOffset); local
244 if (Hash % Hdr.BucketCount != Bucket)
248 ListScope HashScope(W, ("Hash 0x" + Twine::utohexstr(Hash)).str());
347 uint32_t Hash = AccelSection.getU32(&HashOffset); local
349 if (Hash % Hdr.BucketCount != Bucket)
672 Optional<uint32_t> Hash) const {
674 if (Hash)
675 W.printHex("Hash", *Has
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DMergingTypeTableBuilder.h40 /// Hash table.
67 TypeIndex insertRecordAs(hash_code Hash, ArrayRef<uint8_t> &Record);
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerSHA1.cpp216 std::string Hash(const Unit &U) { function in namespace:fuzzer
217 uint8_t Hash[kSHA1NumBytes]; local
218 ComputeSHA1(U.data(), U.size(), Hash);
219 return Sha1ToString(Hash);
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_type_hash_win.cpp40 bool __ubsan::checkDynamicType(void *Object, void *Type, HashValue Hash) { argument
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfWriter.cpp186 auto Hash = I.Hash; local
187 addRecord(Name, Hash, std::move(I), Weight, Warn);
195 auto Hash = Other.Hash; local
209 ProfileDataMap.insert(std::make_pair(Hash, InstrProfRecord()));
224 void InstrProfWriter::addRecord(StringRef Name, uint64_t Hash, argument
232 ProfileDataMap.insert(std::make_pair(Hash, InstrProfRecord()));
398 void InstrProfWriter::writeRecordInText(StringRef Name, uint64_t Hash, argument
403 OS << "# Func Hash local
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCObjectFileInfo.h251 MCSection *getDwarfInfoSection(uint64_t Hash) const {
252 return getDwarfComdatSection(".debug_info", Hash);
290 MCSection *getDwarfTypesSection(uint64_t Hash) const {
291 return getDwarfComdatSection(".debug_types", Hash);
415 MCSection *getDwarfComdatSection(const char *Name, uint64_t Hash) const;
H A DMCAsmMacro.h52 Amp, AmpAmp, Exclaim, ExclaimEqual, Percent, Hash, enumerator in enum:llvm::AsmToken::TokenKind
/freebsd-12-stable/contrib/llvm-project/clang/lib/Analysis/
H A DCloneDetection.cpp224 static size_t createHash(llvm::MD5 &Hash) { argument
229 Hash.final(HashResult);
251 llvm::MD5 Hash; local
254 CloneTypeIIStmtDataCollector<llvm::MD5>(S, Context, Hash);
265 Hash.update(
278 llvm::MD5 Hash; local
283 Hash.update(
288 llvm::MD5 SubHash = Hash;
296 size_t HashCode = createHash(Hash);
/freebsd-12-stable/sys/netgraph/
H A Dng_pred1.c69 #define HASH(x) priv->Hash = (priv->Hash << 4) ^ (x)
78 uint16_t Hash; member in struct:ng_pred1_private
575 priv->Hash = 0;
596 if (priv->GuessTable[priv->Hash] == *source)
601 priv->GuessTable[priv->Hash] = *source;
634 *dest = priv->GuessTable[priv->Hash];
641 priv->GuessTable[priv->Hash] = *source;
663 priv->GuessTable[priv->Hash] = *source;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DPDBStringTable.cpp12 #include "llvm/DebugInfo/PDB/Native/Hash.h"
114 uint32_t Hash = local
117 uint32_t Start = Hash % Count;
H A DPDBStringTableBuilder.cpp12 #include "llvm/DebugInfo/PDB/Native/Hash.h"
133 uint32_t Size = sizeof(uint32_t); // Hash table begins with 4-byte size field.
183 uint32_t Hash = hashStringV1(S); local
186 uint32_t Slot = (Hash + I) % BucketCount;
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFLinkerDeclContext.h79 DeclContext(unsigned Hash, uint32_t Line, uint32_t ByteSize, uint16_t Tag, argument
82 : QualifiedNameHash(Hash), Line(Line), ByteSize(ByteSize), Tag(Tag),
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DOnDiskHashTable.h1 //===--- OnDiskHashTable.h - On-Disk Hash Table Implementation --*- C++ -*-===//
66 const typename Info::hash_value_type Hash; member in class:llvm::OnDiskChainedHashTableGenerator::Item
70 : Key(Key), Data(Data), Next(nullptr), Hash(InfoObj.ComputeHash(Key)) {}
90 Bucket &B = Buckets[E->Hash & (Size - 1)];
135 unsigned Hash = InfoObj.ComputeHash(Key); local
136 for (Item *I = Buckets[Hash & (NumBuckets - 1)].Head; I; I = I->Next)
137 if (I->Hash == Hash && InfoObj.EqualKey(I->Key, Key))
187 LE.write<typename Info::hash_value_type>(I->Hash);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DTpiStreamBuilder.h56 void addTypeRecord(ArrayRef<uint8_t> Type, Optional<uint32_t> Hash);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
H A DLLVMContextImpl.cpp183 unsigned Hash = hash_combine_range(N->op_begin() + Offset, N->op_end()); local
188 assert(Hash == RawHash &&
192 return Hash;
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenPGO.cpp82 /// Hash values for AST nodes.
157 PGOHash Hash; member in struct:__anon2940::MapRegionCounters
163 : NextCounter(0), Hash(HashVersion), CounterMap(CounterMap) {}
206 if (Hash.getHashVersion() != PGO_HASH_V1)
207 Type = getHashType(Hash.getHashVersion(), S);
209 Hash.combine(Type);
215 if (Hash.getHashVersion() == PGO_HASH_V1)
224 Hash.combine(PGOHash::IfThenBranch);
226 Hash.combine(PGOHash::IfElseBranch);
229 Hash
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DIssueHash.cpp171 llvm::MD5 Hash; local
175 Hash.update(Content);
176 Hash.final(MD5Res);
/freebsd-12-stable/tools/regression/usr.bin/env/
H A Dregress-sb.rb49 @@gbl_envs = Hash.new
58 @clear_envs = Hash.new
59 @new_envs = Hash.new
60 @old_envs = Hash.new
319 @@rgtest_opts = Hash.new
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DRegisterBankInfo.cpp284 hash_code Hash = hashPartialMapping(StartIdx, Length, &RegBank); local
285 const auto &It = MapOfPartialMappings.find(Hash);
291 auto &PartMapping = MapOfPartialMappings[Hash];
318 hash_code Hash = hashValueMapping(BreakDown, NumBreakDowns); local
319 const auto &It = MapOfValueMappings.find(Hash);
325 auto &ValMapping = MapOfValueMappings[Hash];
338 hash_code Hash = hash_combine_range(Begin, End); local
339 auto &Res = MapOfOperandsMappings[Hash];
391 hash_code Hash = local
393 const auto &It = MapOfInstructionMappings.find(Hash);
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Frontend/
H A DASTUnit.cpp872 static void AddDefinedMacroToHash(const Token &MacroNameTok, unsigned &Hash) { argument
873 Hash = llvm::djbHash(MacroNameTok.getIdentifierInfo()->getName(), Hash);
881 unsigned &Hash; member in class:__anon3016::MacroDefinitionTrackerPPCallbacks
884 explicit MacroDefinitionTrackerPPCallbacks(unsigned &Hash) : Hash(Hash) {} argument
888 AddDefinedMacroToHash(MacroNameTok, Hash);
895 static void AddTopLevelDeclarationToHash(Decl *D, unsigned &Hash) { argument
913 Hash
940 unsigned &Hash; member in class:__anon3017::TopLevelDeclTrackerConsumer
943 TopLevelDeclTrackerConsumer(ASTUnit &_Unit, unsigned &Hash) argument
1057 unsigned Hash = 0; member in class:__anon3017::ASTUnitPreambleCallbacks
[all...]

Completed in 408 milliseconds

12345