Home
last modified time | relevance | path

Searched refs:MD5Hash (Results 1 – 17 of 17) sorted by relevance

/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_defs.h150 struct MD5Hash { struct
152 bool operator==(const MD5Hash &other) const; argument
155 MD5Hash md5_hash(const void *data, uptr size);
H A Dtsan_md5.cpp242 MD5Hash md5_hash(const void *data, uptr size) { in md5_hash()
243 MD5Hash res; in md5_hash()
H A Dtsan_rtl.cpp1084 bool MD5Hash::operator==(const MD5Hash &other) const { in operator ==()
H A Dtsan_rtl.h285 MD5Hash hash[2];
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DFunctionId.h125 return MD5Hash(StringRef(Data, LengthOrHashCode)); in getHashCode()
167 inline uint64_t MD5Hash(const FunctionId &Obj) { in MD5Hash() function
H A DInstrProf.h570 StringRef InstrProfSymtab::getFuncOrVarNameIfDefined(uint64_t MD5Hash) { in getFuncOrVarNameIfDefined() argument
571 StringRef ret = getFuncOrVarName(MD5Hash); in getFuncOrVarNameIfDefined()
577 StringRef InstrProfSymtab::getFuncOrVarName(uint64_t MD5Hash) { in getFuncOrVarName() argument
579 auto Result = llvm::lower_bound(MD5NameMap, MD5Hash, in getFuncOrVarName()
582 if (Result != MD5NameMap.end() && Result->first == MD5Hash) in getFuncOrVarName()
989 return MD5Hash(K); in ComputeHash()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DInstrOrderFile.cpp99 stream << std::hex << MD5Hash(F.getName()); in generateCodeSequence()
143 updateB.CreateStore(ConstantInt::get(Type::getInt64Ty(Ctx), MD5Hash(F.getName())), in generateCodeSequence()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DSampleProfileProbe.cpp58 Hash ^= MD5Hash(std::to_string(InlinedAt->getLine())); in getCallStackHash()
59 Hash ^= MD5Hash(std::to_string(InlinedAt->getColumn())); in getCallStackHash()
61 Hash ^= MD5Hash(Name); in getCallStackHash()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DMD5.h109 inline uint64_t MD5Hash(StringRef Str) { in MD5Hash() function
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DMIRFSDiscriminator.cpp66 return MD5Hash(Str); in getCallStackHashV0()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DGlobalValue.h590 static GUID getGUID(StringRef GlobalName) { return MD5Hash(GlobalName); } in getGUID()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp204 MD5Hash(Obj.getMemoryBufferRef().getBuffer()), true)) in notifyObjectLoaded()
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/
H A DMCPseudoProbe.cpp244 const_cast<MCSymbol *>(FuncSym), MD5Hash(FuncSym->getName()), in emit()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProfReader.cpp911 auto GUID = MD5Hash(Name); in readFuncProfiles()
934 auto iter = FuncOffsetTable.find(MD5Hash(Name)); in readFuncProfiles()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp805 std::string MD5Name = std::to_string(llvm::MD5Hash(FuncNameFilter)); in filterFunctions()
807 std::to_string(llvm::MD5Hash(FuncNameNegativeFilter)); in filterFunctions()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenModule.cpp2113 return llvm::ConstantInt::get(Int64Ty, llvm::MD5Hash(MDS->getString())); in CreateCrossDsoCfiTypeId()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp13609 CUIDHash = llvm::utohexstr(llvm::MD5Hash(LangOpts.CUID), /*LowerCase=*/true); in getCUIDHash()