Home
last modified time | relevance | path

Searched refs:HashCode (Results 1 – 2 of 2) sorted by relevance

/freebsd-src/contrib/llvm-project/clang/lib/Analysis/
H A DCloneDetection.cpp225 size_t HashCode; in createHash() local
233 std::memcpy(&HashCode, &HashResult, in createHash()
234 std::min(sizeof(HashCode), sizeof(HashResult))); in createHash()
236 return HashCode; in createHash()
296 size_t HashCode = createHash(Hash); in saveHash() local
297 StmtsByHash.push_back(std::make_pair(HashCode, StmtSequence(S, D))); in saveHash()
298 return HashCode; in saveHash()
/freebsd-src/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DFunctionId.h67 explicit FunctionId(uint64_t HashCode) in FunctionId() argument
68 : LengthOrHashCode(HashCode) { in FunctionId()
69 assert(HashCode != 0); in FunctionId()