Searched refs:MD5 (Results 26 - 50 of 67) sorted by relevance

123

/freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCContext.cpp613 Optional<MD5::MD5Result> Cksum;
615 MD5 Hash;
616 MD5::MD5Result Sum;
653 Optional<MD5::MD5Result> Checksum,
H A DMCDwarf.cpp364 const MD5::MD5Result &Cksum = *DwarfFile.Checksum;
411 // in the v5 table. Emit MD5 checksums and source if we have them.
539 Optional<MD5::MD5Result> Checksum,
548 StringRef &FileName, Optional<MD5::MD5Result> Checksum) {
557 Optional<MD5::MD5Result> Checksum,
568 // Keep track of whether any or all files have an MD5 checksum.
H A DMCAsmStreamer.cpp234 Optional<MD5::MD5Result> Checksum = None,
238 Optional<MD5::MD5Result> Checksum,
1215 Optional<MD5::MD5Result> Checksum,
1248 Optional<MD5::MD5Result> Checksum, Optional<StringRef> Source, unsigned CUID) {
1277 Optional<MD5::MD5Result> Checksum,
H A DMCStreamer.cpp215 Optional<MD5::MD5Result> Checksum,
224 Optional<MD5::MD5Result> Checksum,
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProf.h31 #include "llvm/Support/MD5.h"
415 // A map from MD5 keys to function name strings.
417 // A map from MD5 keys to function define. We only populate this map
420 // A map from function runtime address to function name MD5 hash.
479 /// Map a function address to its name's MD5 hash. This interface
944 MD5, member in class:llvm::IndexedInstrProf::HashT
945 Last = MD5
950 case HashT::MD5:
982 const HashT HashType = HashT::MD5;
1090 // from control data struct is changed from raw pointer to Name's MD5 valu
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCContext.h30 #include "llvm/Support/MD5.h"
549 Optional<MD5::MD5Result> Checksum,
586 Optional<MD5::MD5Result> Checksum,
592 /// Reports whether MD5 checksum usage is consistent (all-or-none).
/freebsd-12-stable/crypto/openssl/crypto/md5/asm/
H A Dmd5-sparcv9.pl19 # MD5 for SPARCv9, 6.9 cycles per byte on UltraSPARC, >40% faster than
22 # SPARC T4 MD5 hardware achieves 3.20 cycles per byte, which is 2.1x
250 .word 0x81b02800 ! MD5
291 .word 0x81b02800 ! MD5
375 .asciz "MD5 block transform for SPARCv9, CRYPTOGAMS by <appro\@openssl.org>"
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugLine.h20 #include "llvm/Support/MD5.h"
41 MD5::MD5Result Checksum;
54 /// For v5, whether filename entries provide an MD5 checksum.
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.h288 /// If the \p File has an MD5 checksum, return it as an MD5Result
290 Optional<MD5::MD5Result> getMD5AsBytes(const DIFile *File) const;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DPath.cpp1018 ErrorOr<MD5::MD5Result> md5_contents(int FD) {
1019 MD5 Hash;
1033 MD5::MD5Result Result;
1038 ErrorOr<MD5::MD5Result> md5_contents(const Twine &Path) {
/freebsd-12-stable/usr.bin/xinstall/
H A Dxinstall.c92 MD5_CTX MD5; member in union:__anon17354
417 MD5Init(&(c->MD5));
442 MD5Update(&(c->MD5), data, len);
465 return (MD5End(&(c->MD5), buf));
/freebsd-12-stable/contrib/llvm-project/clang/lib/Frontend/
H A DPrecompiledPreamble.cpp674 Result.MD5 = {};
685 llvm::MD5 MD5Ctx;
687 MD5Ctx.final(Result.MD5);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeView.h561 enum class FileChecksumKind : uint8_t { None, MD5, SHA1, SHA256 }; member in class:llvm::codeview::CallingConvention::ClassOptions::FrameProcedureOptions::FunctionOptions::HfaKind::MemberAccess::MethodKind::MethodOptions::ModifierOptions::PointerKind::PointerMode::PointerOptions::PointerToMemberRepresentation::VFTableSlotKind::WindowsRTClassKind::ExportFlags::FileChecksumKind
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DPDBTypes.h117 enum class PDB_Checksum { None = 0, MD5 = 1, SHA1 = 2, SHA256 = 3 }; member in class:llvm::pdb::PDB_Checksum
207 // 406ea660-64cf-4c82-b6f0-42d48172a799 MD5 (HashDataSize is 16)
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DInputFile.cpp115 RETURN_CASE(FileChecksumKind, MD5, "MD5");
/freebsd-12-stable/contrib/llvm-project/lldb/source/Utility/
H A DDataExtractor.cpp27 #include "llvm/Support/MD5.h"
1118 llvm::MD5 md5;
1123 llvm::MD5::MD5Result result;
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DFileSystem.h37 #include "llvm/Support/MD5.h"
434 /// Compute an MD5 hash of a file's contents.
439 ErrorOr<MD5::MD5Result> md5_contents(int FD);
442 ErrorOr<MD5::MD5Result> md5_contents(const Twine &Path);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DGCOV.cpp21 #include "llvm/Support/MD5.h"
692 MD5 Hasher;
693 MD5::MD5Result Result;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DEnumTables.cpp131 CV_ENUM_CLASS_ENT(FileChecksumKind, MD5),
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DPDBExtras.cpp192 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_Checksum, MD5, OS)
/freebsd-12-stable/lib/libmd/
H A DMakefile141 sed -e 's/mdX/md5/g' -e 's/MDX/MD5/g' ${.ALLSRC}) > ${.TARGET}
228 echo 'MD5 test suite:' > ${.TARGET}
229 @echo 'MD5 ("") = d41d8cd98f00b204e9800998ecf8427e' >> ${.TARGET}
230 @echo 'MD5 ("a") = 0cc175b9c0f1b6a831c399e269772661' >> ${.TARGET}
231 @echo 'MD5 ("abc") = 900150983cd24fb0d6963f7d28e17f72' >> ${.TARGET}
232 @echo 'MD5 ("message digest") = f96b697d7cb7938d525a2f31aaf161d0' >> ${.TARGET}
233 @echo 'MD5 ("abcdefghijklmnopqrstuvwxyz") = c3fcd3d76192e4007dfb496cca67e13b' >> ${.TARGET}
234 @echo 'MD5 ("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789") = d174ab98d277d9f5a5611c2c9f419d9f' >> ${.TARGET}
235 @echo 'MD5 ("12345678901234567890123456789012345678901234567890123456789012345678901234567890") = 57edf4a22be3c955ac49da2e2107b67a' >> ${.TARGET}
401 @${ECHO} MD5 passe
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Demangle/
H A DMicrosoftDemangle.cpp756 // This is an MD5 mangled name. We can't demangle it, just return the
758 // An MD5 mangled name is ??@ followed by 32 characters and a terminating @.
767 // There are two additional special cases for MD5 names:
769 // for the object to have an MD5 name, the complete object locator is
774 // instead of_CT??@...@8 with just one MD5 name. Since we don't yet
775 // demangle catchable types anywhere, this isn't handled for MD5 names
779 StringView MD5(Start, MangledName.begin());
781 S->Name = synthesizeQualifiedName(Arena, MD5);
/freebsd-12-stable/secure/lib/libcrypto/man/man3/
H A DMakefile199 MAN+= MD5.3
1889 MLINKS+= MD5.3 MD2.3
1890 MLINKS+= MD5.3 MD2_Final.3
1891 MLINKS+= MD5.3 MD2_Init.3
1892 MLINKS+= MD5.3 MD2_Update.3
1893 MLINKS+= MD5.3 MD4.3
1894 MLINKS+= MD5.3 MD4_Final.3
1895 MLINKS+= MD5.3 MD4_Init.3
1896 MLINKS+= MD5.3 MD4_Update.3
1897 MLINKS+= MD5
[all...]
/freebsd-12-stable/share/man/man9/
H A DMakefile198 MD5.9 \
1393 MLINKS+=MD5.9 MD5Init.9 \
1394 MD5.9 MD5Transform.9
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DHWAddressSanitizer.cpp1402 MD5 Hasher;
1404 MD5::MD5Result Hash;

Completed in 426 milliseconds

123