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

12345

/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDriver.cpp423 : Options.ArtifactPrefix + "minimized-from-" + Hash(U);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h218 GenericDINode(LLVMContext &C, StorageType Storage, unsigned Hash,
222 setHash(Hash);
226 void setHash(unsigned Hash) { SubclassData32 = Hash; }
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DELF.h89 using Elf_Hash = typename ELFT::Hash;
H A DELFTypes.h70 using Hash = Elf_Hash_Impl<ELFType<E, Is64>>;
277 Elf_Word vd_hash; // Hash of name
313 Elf_Word vna_hash; // Hash of dependency name
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp104 using Elf_Hash = typename ELFT::Hash; \
166 unsigned Hash; member in struct:__anon5851::__anon5852::VerDef
172 unsigned Hash; member in struct:__anon5851::__anon5852::VernAux
526 VD.Hash = D->vd_hash;
626 Aux.Hash = Vernaux->vna_hash;
4235 // Hash histogram shows statistics of how efficient the hash was for the
5946 W.printNumber("Hash", D.Hash);
5977 W.printNumber("Hash", Aux.Hash);
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExpr.cpp816 llvm::Value *Hash = emitHash16Bytes(Builder, Low, High); local
817 Hash = Builder.CreateTrunc(Hash, IntPtrTy);
824 llvm::Value *Slot = Builder.CreateAnd(Hash,
836 llvm::Value *EqualHash = Builder.CreateICmpEQ(CacheVal, Hash);
843 llvm::Value *DynamicData[] = { Ptr, Hash };
H A DCGDebugInfo.cpp375 llvm::MD5 Hash;
378 Hash.update(MemBuffer->getBuffer());
379 Hash.final(Result);
381 Hash.stringifyResult(Result, Checksum);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp3473 // Module Hash, 160 bits SHA1. Optionally, emitted after each MST_CODE_ENTRY.
3502 const auto &Hash = Value.second;
3503 if (llvm::any_of(Hash, [](uint32_t H) { return H; })) {
3504 Vals.assign(Hash.begin(), Hash.end());
4215 StringRef Hash = Hasher.result(); local
4217 Vals[Pos / 4] = support::endian::read32be(Hash.data() + Pos);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1036 VerDef.vd_hash = E.Hash;
1099 VernAux.vna_hash = VAuxE.Hash;
H A DELFYAML.cpp1528 IO.mapRequired("Hash", E.Hash);
1546 IO.mapRequired("Hash", E.Hash);
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.cpp1216 P.formatLine("Hash Version: {0}", IS->getHashVersion());
1227 P.printLine("Hash Table:");
1495 P.formatLine("Hash Stream Index: {0}", Stream.getTypeHashStreamIndex());
1496 P.formatLine("Aux Hash Stream Index: {0}",
1498 P.formatLine("Hash Key Size: {0}", Stream.getHashKeySize());
1499 P.formatLine("Num Hash Buckets: {0}", Stream.getNumHashBuckets());
1510 P.formatLine("Hash Adjusters:");
1826 P.formatLine("Hash Entries");
1834 P.formatLine("Hash Buckets");
1837 for (uint32_t Hash
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Sparc/AsmParser/
H A DSparcAsmParser.cpp769 while (getLexer().getKind() == AsmToken::Hash) {
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
H A DMicrosoftMangle.cpp57 llvm::MD5::MD5Result Hash; variable
59 Hasher.final(Hash);
62 llvm::MD5::stringifyResult(Hash, HexString);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp682 OS.AddComment("Hash Algorithm");
696 assert(GHR.Hash.size() == 8);
697 StringRef S(reinterpret_cast<const char *>(GHR.Hash.data()),
698 GHR.Hash.size());
H A DDwarfDebug.cpp2903 MD5 Hash;
2904 Hash.update(Identifier);
2909 Hash.final(Result);
/freebsd-12-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp1002 auto Hash = Hasher.result(); local
1010 Signature[I] = LShift(Hash[I * 4 + 0], 24) | LShift(Hash[I * 4 + 1], 16) |
1011 LShift(Hash[I * 4 + 2], 8) | LShift(Hash[I * 4 + 3], 0);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp7470 /// ::= 'module' ':' '(' 'path' ':' STRINGCONSTANT ',' 'hash' ':' Hash ')'
7471 /// Hash ::= '(' UInt32 ',' UInt32 ',' UInt32 ',' UInt32 ',' UInt32 ')'
7488 ModuleHash Hash;
7489 if (ParseUInt32(Hash[0]) || ParseToken(lltok::comma, "expected ',' here") ||
7490 ParseUInt32(Hash[1]) || ParseToken(lltok::comma, "expected ',' here") ||
7491 ParseUInt32(Hash[2]) || ParseToken(lltok::comma, "expected ',' here") ||
7492 ParseUInt32(Hash[3]) || ParseToken(lltok::comma, "expected ',' here") ||
7493 ParseUInt32(Hash[4]))
7500 auto ModuleEntry = Index->addModule(Path, ID, Hash);
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h3555 void setHasODRHash(bool Hash = true) { EnumDeclBits.HasODRHash = Hash; }
H A DStmt.h1231 /// \param Hash an ODRHash object which will be called where pointers would
1233 void ProcessODRHash(llvm::FoldingSetNodeID &ID, ODRHash& Hash) const;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
H A DAsmWriter.cpp2705 for (auto Hash : ModPair.second)
2706 Out << FS << Hash; local
/freebsd-12-stable/crypto/heimdal/lib/sqlite/
H A Dsqlite3.c7334 typedef struct Hash Hash; typedef in typeref:struct:Hash
7346 ** Hash.first points to the head of this list.
7348 ** There are Hash.htsize buckets. Each bucket points to a spot in
7352 ** Hash.htsize and Hash.ht may be zero. In that case lookup is done
7354 ** Hash.ht table is never allocated because if there are few elements
7358 struct Hash { struct
7383 SQLITE_PRIVATE void sqlite3HashInit(Hash*);
7384 SQLITE_PRIVATE void *sqlite3HashInsert(Hash*, cons
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp5597 auto &Hash = getThisModule()->second.second;
5601 Hash[Pos++] = Val;
/freebsd-12-stable/contrib/sqlite3/
H A Dsqlite3.c13962 typedef struct Hash Hash; typedef in typeref:struct:Hash
13974 ** Hash.first points to the head of this list.
13976 ** There are Hash.htsize buckets. Each bucket points to a spot in
13980 ** Hash.htsize and Hash.ht may be zero. In that case lookup is done
13982 ** Hash.ht table is never allocated because if there are few elements
13986 struct Hash { struct
14011 SQLITE_PRIVATE void sqlite3HashInit(Hash*);
14012 SQLITE_PRIVATE void *sqlite3HashInsert(Hash*, cons
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmParser.cpp1839 // does not understand Labels. This may cause us to see a Hash
1841 if (getTok().is(AsmToken::Hash)) {
/freebsd-12-stable/lib/clang/libllvm/
H A DMakefile484 SRCS_EXT+= DebugInfo/PDB/Native/Hash.cpp

Completed in 1158 milliseconds

12345