Searched refs:MD5 (Results 1 - 25 of 67) sorted by relevance

123

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DMD5.h5 * MD5 Message-Digest Algorithm (RFC 1321).
41 class MD5 { class in namespace:llvm
66 // Our MD5 implementation returns the result in little endian, so the low
82 MD5();
104 inline bool operator==(const MD5::MD5Result &LHS, const MD5::MD5Result &RHS) {
108 /// Helper to compute and return lower 64 bits of the given string's MD5 hash.
112 MD5 Hash;
114 MD5::MD5Result Result;
/freebsd-13-stable/crypto/heimdal/lib/kadm5/
H A Dcheck-cracklib.pl36 use Digest::MD5;
65 my $md5context = new Digest::MD5;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DUniqueInternalLinkageNames.cpp18 #include "llvm/Support/MD5.h"
24 llvm::MD5 Md5;
26 llvm::MD5::MD5Result R;
29 llvm::MD5::stringifyResult(R, Str);
H A DNameAnonGlobals.cpp18 #include "llvm/Support/MD5.h"
39 MD5 Hasher;
54 MD5::MD5Result Hash;
57 MD5::stringifyResult(Hash, Result);
H A DSplitModule.cpp37 #include "llvm/Support/MD5.h"
118 // the MD5-based partitioning.
239 // Partition by MD5 hash. We only need a few bits for evenness as the number
242 MD5 H;
243 MD5::MD5Result R;
H A DModuleUtils.cpp262 MD5 Md5;
285 MD5::MD5Result R;
289 MD5::stringifyResult(R, Str);
/freebsd-13-stable/crypto/openssl/include/openssl/
H A Dmd5.h43 unsigned char *MD5(const unsigned char *d, size_t n, unsigned char *md);
/freebsd-13-stable/crypto/openssl/crypto/md5/
H A Dmd5_one.c19 unsigned char *MD5(const unsigned char *d, size_t n, unsigned char *md) function
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DMD5.cpp5 * MD5 Message-Digest Algorithm (RFC 1321).
40 #include "llvm/Support/MD5.h"
51 // The basic MD5 functions.
61 // The MD5 transformation for all four rounds.
80 const uint8_t *MD5::body(ArrayRef<uint8_t> Data) {
187 MD5::MD5() = default;
190 void MD5::update(ArrayRef<uint8_t> Data) {
228 void MD5::update(StringRef Str) {
235 void MD5
[all...]
/freebsd-13-stable/tools/tools/commitsdb/
H A Dmake_commit_db10 use Digest::MD5 qw(md5_hex);
H A Dquery_commit_db11 use Digest::MD5 qw(md5_hex);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Frontend/
H A DPrecompiledPreamble.h21 #include "llvm/Support/MD5.h"
212 /// Memory buffers have MD5 instead of modification time. We don't
213 /// compute MD5 for on-disk files because we hope that modification time is
215 llvm::MD5::MD5Result MD5 = {}; member in struct:clang::PrecompiledPreamble::PreambleFileHash
224 LHS.MD5 == RHS.MD5;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDIEHash.h18 #include "llvm/Support/MD5.h"
102 MD5 Hash;
H A DDIEHash.cpp392 MD5::MD5Result Result;
395 // ... take the least significant 8 bytes and return those. Our MD5
416 MD5::MD5Result Result;
419 // ... take the least significant 8 bytes and return those. Our MD5
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCDwarf.h24 #include "llvm/Support/MD5.h"
64 /// The MD5 checksum, if there is one. Non-owning pointer to data allocated
66 Optional<MD5::MD5Result> Checksum;
234 Optional<MD5::MD5Result> Checksum,
258 Optional<MD5::MD5Result> Checksum,
288 Optional<MD5::MD5Result> Checksum,
296 Optional<MD5::MD5Result> Checksum, uint16_t DwarfVersion,
320 Optional<MD5::MD5Result> Checksum,
325 Optional<MD5::MD5Result> Checksum, Optional<StringRef> Source,
332 Optional<MD5
[all...]
/freebsd-13-stable/usr.sbin/fmtree/
H A Dmisc.c63 #ifdef MD5
H A Dcreate.c46 #ifdef MD5
228 #ifdef MD5
237 #endif /* MD5 */
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DIssueHash.cpp19 #include "llvm/Support/MD5.h"
171 llvm::MD5 Hash;
172 llvm::MD5::MD5Result MD5Res;
177 llvm::MD5::stringifyResult(MD5Res, Res);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Analysis/
H A DCloneDetection.cpp18 #include "llvm/Support/MD5.h"
225 static size_t createHash(llvm::MD5 &Hash) {
229 llvm::MD5::MD5Result HashResult;
252 llvm::MD5 Hash;
255 CloneTypeIIStmtDataCollector<llvm::MD5>(S, Context, Hash);
279 llvm::MD5 Hash;
289 llvm::MD5 SubHash = Hash;
/freebsd-13-stable/contrib/bmake/
H A Dos.sh188 [ -x /usr/bin/md5sum ] && { MD5=/usr/bin/md5sum; export MD5; }
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenPGO.cpp23 #include "llvm/Support/MD5.h"
76 llvm::MD5 MD5; member in class:__anon1801::PGOHash
134 : Working(0), Count(0), HashVersion(HashVersion), MD5() {}
731 // Pass through MD5 if enough work has built up.
735 MD5.update(llvm::makeArrayRef((uint8_t *)&Swapped, sizeof(Swapped)));
745 // Use Working as the hash directly if we never used MD5.
757 MD5.update({(uint8_t)Working});
761 MD5.update(llvm::makeArrayRef((uint8_t *)&Swapped, sizeof(Swapped)));
765 // Finalize the MD5 an
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/tools/driver/
H A Dcc1gen_reproducer_main.cpp33 std::string MD5; member in struct:__anon2425::UnsavedFileHash
56 IO.mapRequired("md5", Info.MD5);
/freebsd-13-stable/lib/clang/libllvmminimal/
H A DMakefile33 SRCS+= Support/MD5.cpp
/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCContext.cpp734 Optional<MD5::MD5Result> Cksum;
736 MD5 Hash;
737 MD5::MD5Result Sum;
774 Optional<MD5::MD5Result> Checksum,
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProf.h32 #include "llvm/Support/MD5.h"
420 // A map from MD5 keys to function name strings.
422 // A map from MD5 keys to function define. We only populate this map
425 // A map from function runtime address to function name MD5 hash.
484 /// Map a function address to its name's MD5 hash. This interface
949 MD5, member in class:llvm::IndexedInstrProf::HashT
950 Last = MD5
955 case HashT::MD5:
990 const HashT HashType = HashT::MD5;
1098 // from control data struct is changed from raw pointer to Name's MD5 valu
[all...]

Completed in 292 milliseconds

123