Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
Dxxhash.h45 uint64_t xxHash64(llvm::StringRef Data);
46 uint64_t xxHash64(llvm::ArrayRef<uint8_t> Data);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
Dxxhash.cpp71 uint64_t llvm::xxHash64(StringRef Data) { in xxHash64() function in llvm
136 uint64_t llvm::xxHash64(ArrayRef<uint8_t> Data) { in xxHash64() function in llvm
137 return xxHash64({(const char *)Data.data(), Data.size()}); in xxHash64()
/freebsd-12-stable/contrib/llvm-project/lld/MachO/
DInputSection.cpp89 icfEqClass[0] = xxHash64(data) | (1ull << 63); in hashForICF()
155 uint32_t hash = config->dedupLiterals ? xxHash64(s.substr(0, size)) : 0; in splitIntoPieces()
DWriter.cpp1076 [&](size_t i) { hashes[i] = xxHash64(chunks[i]); }); in writeUuid()
1077 uint64_t digest = xxHash64({reinterpret_cast<uint8_t *>(hashes.data()), in writeUuid()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
DPDBFileBuilder.cpp334 xxHash64({Buffer.getBufferStart(), Buffer.getBufferEnd()}); in commit()
DGSIStreamBuilder.cpp78 return xxHash64(Val.RecordData); in getHashValue()
/freebsd-12-stable/contrib/llvm-project/lld/COFF/
DICF.cpp272 sc->eqClass[0] = xxHash64(sc->getContents()); in run()
DWriter.cpp1906 hash = xxHash64(outputFileData); in writeBuildId()
/freebsd-12-stable/contrib/llvm-project/lld/ELF/
DICF.cpp494 s->eqClass[0] = xxHash64(s->data()) | (1U << 31); in run()
DInputSection.cpp1385 pieces.emplace_back(off, xxHash64(s.substr(0, size)), !isAlloc); in splitStrings()
1400 pieces.emplace_back(i, xxHash64(data.slice(i, entSize)), !isAlloc); in splitNonStrings()
DWriter.cpp3039 write64le(dest, xxHash64(arr)); in writeBuildId()
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
DMicrosoftMangle.cpp468 uint32_t TruncatedHash = uint32_t(xxHash64(FE->getName())); in MicrosoftMangleContextImpl()