|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
Declarations
include/llvm/Support/xxhash.h 45 uint64_t xxHash64(llvm::StringRef Data);
References
lib/Support/xxhash.cpp 137 return xxHash64({(const char *)Data.data(), Data.size()});
tools/clang/lib/AST/MicrosoftMangle.cpp 415 uint32_t TruncatedHash = uint32_t(xxHash64(FE->getName()));
tools/clang/tools/extra/clangd/SourceCode.cpp 683 uint64_t Hash{llvm::xxHash64(Content)};
tools/lld/COFF/Writer.cpp 1786 hash = xxHash64(outputFileData);
tools/lld/ELF/InputSection.cpp 1238 pieces.emplace_back(off, xxHash64(s.substr(0, size)), !isAlloc);
unittests/Support/xxhashTest.cpp 15 EXPECT_EQ(0x33bf00a859c4ba3fU, xxHash64("foo"));
16 EXPECT_EQ(0x48a37c90ad27a659U, xxHash64("bar"));
18 xxHash64("0123456789abcdefghijklmnopqrstuvwxyz"));