/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | xxhash.h | 49 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 D | MIRFSDiscriminator.cpp | 85 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 D | StringPool.h |
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | StringMap.cpp | 46 uint32_t StringMapImpl::hash(StringRef Key) { return xxh3_64bits(Key); } in hash()
|
H A D | xxhash.cpp | 553 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 D | ConcurrentHashtable.h | 79 return xxh3_64bits(Key); in getHashValue()
|
H A D | FoldingSet.h | 307 return static_cast<unsigned>(xxh3_64bits(ArrayRef( in computeStableHash()
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
H A D | PDBFileBuilder.cpp | 351 xxh3_64bits({Buffer.getBufferStart(), Buffer.getBufferEnd()}); in commit()
|
H A D | GSIStreamBuilder.cpp | 80 return xxh3_64bits(Val.RecordData); in getHashValue()
|
/freebsd/contrib/llvm-project/lld/COFF/ |
H A D | ICF.cpp | 285 sc->eqClass[0] = xxh3_64bits(sc->getContents()); in run()
|
H A D | Writer.cpp | 2215 hash = xxh3_64bits(outputFileData); in writeBuildId()
|
/freebsd/contrib/llvm-project/lld/MachO/ |
H A D | Writer.cpp | 1206 [&](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 D | ICF.cpp | 460 isec->icfEqClass[0] = xxh3_64bits(isec->data) | (1ull << 31); in foldIdenticalSections()
|
H A D | InputSection.cpp | 296 uint32_t hash = deduplicateLiterals ? xxh3_64bits(s.take_front(end)) : 0; in splitIntoPieces()
|
H A D | SyntheticSections.cpp | 1772 uint32_t hash = xxh3_64bits(str) & 0x7fffffff; in getStringOffset()
|
/freebsd/contrib/llvm-project/lld/ELF/ |
H A D | InputSection.cpp | 1373 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 D | ICF.cpp | 503 s->eqClass[0] = xxh3_64bits(s->content()) | (1U << 31); in run()
|
H A D | Writer.cpp | 2894 write64le(dest, xxh3_64bits(arr)); in writeBuildId()
|
/freebsd/contrib/llvm-project/llvm/lib/Debuginfod/ |
H A D | Debuginfod.cpp | 58 return utostr(xxh3_64bits(S)); in getDebuginfodCacheKey()
|
/freebsd/contrib/llvm-project/clang/lib/Lex/ |
H A D | HeaderSearch.cpp | 286 auto Hash = llvm::xxh3_64bits(CanonicalPath.str().lower()); in getCachedModuleFileNameImpl()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CodeGenFunction.cpp | 626 CGM.Int32Ty, static_cast<uint32_t>(llvm::xxh3_64bits(Mangled))); in getUBSanFunctionTypeHash()
|
H A D | CGExpr.cpp | 833 llvm::ConstantInt::get(Int64Ty, xxh3_64bits(Out.str())); in EmitTypeCheck()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | MicrosoftMangle.cpp | 500 uint32_t TruncatedHash = uint32_t(xxh3_64bits(FE->getName())); in MicrosoftMangleContextImpl()
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTWriter.cpp | 1785 ContentHash = xxh3_64bits(MemBuff->getBuffer()); in WriteInputFiles() 1995 return llvm::xxh3_64bits(buf); in ComputeHash()
|
H A D | ASTReader.cpp | 2038 return llvm::xxh3_64bits(buf); in ComputeHash() 2645 auto ContentHash = xxh3_64bits(MemBuffOrError.get()->getBuffer()); in getInputFile()
|