Home
last modified time | relevance | path

Searched refs:xxh3_64bits (Results 1 – 25 of 25) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A Dxxhash.h49 uint64_t xxh3_64bits(ArrayRef<uint8_t> data);
50 inline uint64_t xxh3_64bits(StringRef data) { in xxh3_64bits() function
51 return xxh3_64bits(ArrayRef(data.bytes_begin(), data.size())); in xxh3_64bits()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMIRFSDiscriminator.cpp85 Ret = hashCombine(Ret, xxh3_64bits(ArrayRef<uint8_t>(DIL->getLine()))); in getCallStackHash()
86 Ret = hashCombine(Ret, xxh3_64bits(DIL->getSubprogramLinkageName())); in getCallStackHash()
/freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinkerParallel/
H A DStringPool.h
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DStringMap.cpp46 uint32_t StringMapImpl::hash(StringRef Key) { return xxh3_64bits(Key); } in hash()
H A Dxxhash.cpp553 uint64_t llvm::xxh3_64bits(ArrayRef<uint8_t> data) { in xxh3_64bits() function in llvm
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DConcurrentHashtable.h79 return xxh3_64bits(Key); in getHashValue()
H A DFoldingSet.h307 return static_cast<unsigned>(xxh3_64bits(ArrayRef( in computeStableHash()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DPDBFileBuilder.cpp351 xxh3_64bits({Buffer.getBufferStart(), Buffer.getBufferEnd()}); in commit()
H A DGSIStreamBuilder.cpp80 return xxh3_64bits(Val.RecordData); in getHashValue()
/freebsd/contrib/llvm-project/lld/COFF/
H A DICF.cpp285 sc->eqClass[0] = xxh3_64bits(sc->getContents()); in run()
H A DWriter.cpp2215 hash = xxh3_64bits(outputFileData); in writeBuildId()
/freebsd/contrib/llvm-project/lld/MachO/
H A DWriter.cpp1206 [&](size_t i) { hashes[i] = xxh3_64bits(chunks[i]); }); in writeUuid()
1209 hashes[chunks.size()] = xxh3_64bits(sys::path::filename(config->finalOutput)); in writeUuid()
1211 uint64_t digest = xxh3_64bits({reinterpret_cast<uint8_t *>(hashes.data()), in writeUuid()
H A DICF.cpp460 isec->icfEqClass[0] = xxh3_64bits(isec->data) | (1ull << 31); in foldIdenticalSections()
H A DInputSection.cpp296 uint32_t hash = deduplicateLiterals ? xxh3_64bits(s.take_front(end)) : 0; in splitIntoPieces()
H A DSyntheticSections.cpp1772 uint32_t hash = xxh3_64bits(str) & 0x7fffffff; in getStringOffset()
/freebsd/contrib/llvm-project/lld/ELF/
H A DInputSection.cpp1373 pieces.emplace_back(p - s.begin(), xxh3_64bits(StringRef(p, size)), live); in splitStrings()
1379 pieces.emplace_back(p - s.begin(), xxh3_64bits(StringRef(p, size)), live); in splitStrings()
1395 pieces[j] = {i, (uint32_t)xxh3_64bits(data.slice(i, entSize)), live}; in splitNonStrings()
H A DICF.cpp503 s->eqClass[0] = xxh3_64bits(s->content()) | (1U << 31); in run()
H A DWriter.cpp2894 write64le(dest, xxh3_64bits(arr)); in writeBuildId()
/freebsd/contrib/llvm-project/llvm/lib/Debuginfod/
H A DDebuginfod.cpp58 return utostr(xxh3_64bits(S)); in getDebuginfodCacheKey()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DHeaderSearch.cpp286 auto Hash = llvm::xxh3_64bits(CanonicalPath.str().lower()); in getCachedModuleFileNameImpl()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenFunction.cpp626 CGM.Int32Ty, static_cast<uint32_t>(llvm::xxh3_64bits(Mangled))); in getUBSanFunctionTypeHash()
H A DCGExpr.cpp833 llvm::ConstantInt::get(Int64Ty, xxh3_64bits(Out.str())); in EmitTypeCheck()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DMicrosoftMangle.cpp500 uint32_t TruncatedHash = uint32_t(xxh3_64bits(FE->getName())); in MicrosoftMangleContextImpl()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp1785 ContentHash = xxh3_64bits(MemBuff->getBuffer()); in WriteInputFiles()
1995 return llvm::xxh3_64bits(buf); in ComputeHash()
H A DASTReader.cpp2038 return llvm::xxh3_64bits(buf); in ComputeHash()
2645 auto ContentHash = xxh3_64bits(MemBuffOrError.get()->getBuffer()); in getInputFile()