Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/Serialization/
H A DModuleFile.h68 uint64_t ContentHash; member
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp1766 uint32_t ContentHash[2]; member
1773 ContentHash[0] = 0; in trySetContentHash()
1774 ContentHash[1] = 0; in trySetContentHash()
1789 ContentHash[0] = uint32_t(Hash); in trySetContentHash()
1790 ContentHash[1] = uint32_t(Hash >> 32); in trySetContentHash()
1950 RecordData::value_type Record[] = {INPUT_FILE_HASH, Entry.ContentHash[0], in WriteInputFiles()
1951 Entry.ContentHash[1]}; in WriteInputFiles()
H A DASTReader.cpp2691 R.ContentHash = (static_cast<uint64_t>(Record[1]) << 32) | in getInputFileInfo()
2728 uint64_t StoredContentHash = FI.ContentHash; in getInputFile()
2813 auto ContentHash = xxh3_64bits(MemBuffOrError.get()->getBuffer()); in getInputFile() local
2814 if (StoredContentHash == static_cast<uint64_t>(ContentHash)) in getInputFile()