Home
last modified time | relevance | path

Searched refs:ContentHash (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DGlobalCompilationDatabase.cpp99 FileDigest ContentHash; member
210 ContentHash = {}; in load()
231 if (HasOldData && NewContentHash == ContentHash) { in load()
239 ContentHash = NewContentHash; in load()
/llvm-project-15.0.7/llvm/unittests/DebugInfo/CodeView/
H A DTypeHashingTest.cpp62 TEST(TypeHashingTest, ContentHash) { in TEST() argument
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTWriter.cpp1510 uint32_t ContentHash[2]; member
1575 auto ContentHash = hash_code(-1); in WriteInputFiles() local
1581 ContentHash = hash_value(MemBuff->getBuffer()); in WriteInputFiles()
1587 auto CH = llvm::APInt(64, ContentHash); in WriteInputFiles()
1588 Entry.ContentHash[0] = in WriteInputFiles()
1590 Entry.ContentHash[1] = in WriteInputFiles()
1633 RecordData::value_type Record[] = {INPUT_FILE_HASH, Entry.ContentHash[0], in WriteInputFiles()
1634 Entry.ContentHash[1]}; in WriteInputFiles()
H A DASTReader.cpp2324 R.ContentHash = (static_cast<uint64_t>(Record[1]) << 32) | in readInputFileInfo()
2356 uint64_t StoredContentHash = FI.ContentHash; in getInputFile()
2443 auto ContentHash = hash_value(MemBuffOrError.get()->getBuffer()); in getInputFile() local
2444 if (StoredContentHash == static_cast<uint64_t>(ContentHash)) in getInputFile()
/llvm-project-15.0.7/clang/include/clang/Serialization/
H A DASTReader.h1245 uint64_t ContentHash; member