| /llvm-project/llvm/test/DebugInfo/PDB/ |
| H A D | pdbdump-headers.test | 85 ALL-NEXT: - (MD5: A0A5BD0D3ECD93FC29D19DE826FBF4BC) d:\src\llvm\test\debuginfo\pdb\inp… 90 ALL-NEXT: d:\src\llvm\test\debuginfo\pdb\inputs\empty.cpp (MD5: A0A5BD0D3ECD93FC29D19DE826FBF… 811 BIG-NEXT: - (MD5: A20261917ADC01A12CBDBF778BC6CCC8) d:\src\llvm\test\tools\llvm-symbol… 813 BIG-NEXT: - (MD5: 928553F8BA198C9030B65FA10B6B3DD2) f:\dd\externalapis\unifiedcrt\inc\… 814 BIG-NEXT: - (MD5: 377E41F4DAE6F93EA819B4EFCF229F08) f:\dd\externalapis\unifiedcrt\inc\… 815 BIG-NEXT: - (MD5: A5976652B404EDDDBDA326FF9A9488A3) f:\dd\externalapis\unifiedcrt\inc\… 816 BIG-NEXT: - (MD5: 8A16383C445FDABF21BDBAC3825E8133) f:\dd\externalapis\windows\8.1\sdk… 817 BIG-NEXT: - (MD5: 9393435BC7FDE9F624E309D56629171A) f:\dd\vctools\crt\vcruntime\inc\in… 818 BIG-NEXT: - (MD5: DCC558DEFD73C17745F94CC5A98632D9) f:\dd\externalapis\windows\8.1\sdk… 819 BIG-NEXT: - (MD5: 493F2CAB7A6BE4175748A9FC6C4A38FB) f:\dd\externalapis\windows\8.1\sdk… [all …]
|
| /llvm-project/llvm/unittests/Support/ |
| H A D | MD5Test.cpp | 1 //===- llvm/unittest/Support/MD5Test.cpp - MD5 tests ----------------------===// 9 // This file implements unit tests for the MD5 functions. 13 #include "llvm/Support/MD5.h" 23 MD5 Hash; in TestMD5Sum() 25 MD5::MD5Result MD5Res; in TestMD5Sum() 28 MD5::stringifyResult(MD5Res, Res); in TestMD5Sum() 33 MD5 Hash; in TestMD5Sum() 35 MD5::MD5Result MD5Res; in TestMD5Sum() 38 MD5::stringifyResult(MD5Res, Res); in TestMD5Sum() 42 TEST(MD5Test, MD5) { in TEST() argument [all …]
|
| /llvm-project/llvm/test/MC/ELF/ |
| H A D | debug-md5-err.s | 8 # Missing md5 keyword. 14 .file 3 "dir2" "bar" md5 "ff" 18 .file 4 "dir3" "foo" md5 ffeeddccbbaa99887766554433221100 21 # CHECK: [[@LINE+1]]:{{[0-9]+}}: error: MD5 checksum specified, but no file number 22 .file "baz" md5 0xffeeddccbbaa99887766554433221100 24 # Inconsistent use of MD5 option. Note: .file 1 did not supply one. 25 # CHECK: [[@LINE+1]]:{{[0-9]+}}: warning: inconsistent use of MD5 checksums 26 .file 5 "bax" md5 0xffeeddccbbaa99887766554433221100
|
| H A D | debug-mixed-md5.ll | 3 ; ASM: .file 0 "{{.+}}" md5 5 ; ASM-NOT: md5 7 ; OBJ-NOT: md5
|
| /llvm-project/llvm/include/llvm/Support/ |
| H A D | MD5.h | 5 * MD5 Message-Digest Algorithm (RFC 1321). 8 * http://openwall.info/wiki/people/solar/software/public-domain-source-code/md5 25 * See md5.c for more information. 41 class MD5 { 47 // Our MD5 implementation returns the result in little endian, so the low in low() 63 MD5(); 78 /// This is suitable for getting the MD5 at any time without invalidating the 108 /// Helper to compute and return lower 64 bits of the given string's MD5 hash. 112 MD5 Hash; in MD5Hash() 114 MD5::MD5Result Result; in MD5Hash()
|
| /llvm-project/llvm/lib/Support/ |
| H A D | MD5.cpp | 5 * MD5 Message-Digest Algorithm (RFC 1321). 8 * http://openwall.info/wiki/people/solar/software/public-domain-source-code/md5 40 #include "llvm/Support/MD5.h" 50 // The basic MD5 functions. 60 // The MD5 transformation for all four rounds. 79 const uint8_t *MD5::body(ArrayRef<uint8_t> Data) { in body() 186 MD5::MD5() = default; 189 void MD5::update(ArrayRef<uint8_t> Data) { in update() 227 void MD5::update(StringRef Str) { in update() 234 void MD5::final(MD5Result &Result) { in final() [all …]
|
| /llvm-project/lldb/source/Utility/ |
| H A D | Checksum.cpp | 15 Checksum::Checksum(llvm::MD5::MD5Result md5) { SetMD5(md5); } in Checksum() argument 24 void Checksum::SetMD5(llvm::MD5::MD5Result md5) { in SetMD5() argument 26 std::uninitialized_copy_n(md5.begin(), md5_length, m_checksum.begin()); in SetMD5() 43 llvm::MD5::MD5Result Checksum::g_sentinel = {
|
| /llvm-project/lldb/include/lldb/Utility/ |
| H A D | Checksum.h | 12 #include "llvm/Support/MD5.h" 17 static llvm::MD5::MD5Result g_sentinel; 19 Checksum(llvm::MD5::MD5Result md5 = g_sentinel); 30 void SetMD5(llvm::MD5::MD5Result); 32 llvm::MD5::MD5Result m_checksum;
|
| /llvm-project/clang/unittests/AST/ |
| H A D | DataCollectionTest.cpp | 30 llvm::MD5 &DataConsumer; 37 StmtDataCollector(const Stmt *S, ASTContext &Context, llvm::MD5 &DataConsumer) in StmtDataCollector() 55 llvm::MD5::MD5Result &Hash; 56 StmtHashMatch(llvm::MD5::MD5Result &Hash) : NumFound(0), Hash(Hash) {} in StmtHashMatch() 65 llvm::MD5 MD5; in run() local 66 StmtDataCollector(S, *Result.Context, MD5); in run() 67 MD5.final(Hash); in run() 72 static testing::AssertionResult hashStmt(llvm::MD5::MD5Result &Hash, in hashStmt() 96 llvm::MD5::MD5Result Hash1, Hash2; in isStmtHashEqual()
|
| /llvm-project/lld/test/ELF/ |
| H A D | build-id.s | 16 # RUN: ld.lld --build-id=md5 %t -o %t2 17 # RUN: llvm-objdump -s %t2 | FileCheck --check-prefix=MD5 %s 18 # RUN: ld.lld --build-id=md5 %t -o %t2 --threads=1 19 # RUN: llvm-objdump -s %t2 | FileCheck --check-prefix=MD5 %s 40 # RUN: ld.lld --build-id=md5 --build-id=none %t -o %t2 71 # MD5: Contents of section .note.gnu.build-id: 72 # MD5-NEXT: 04000000 10000000 03000000 474e5500 ............GNU. 73 # MD5-NEXT: dbf0bc13 b3ff11e9 fde6e17c 0304983c
|
| /llvm-project/llvm/test/CodeGen/Generic/ |
| H A D | dwarf-md5.ll | 2 ; MD5 checksums provided by IR should be passed through to asm. 19 ; ASM-4-NOT: md5 21 ; ASM-4-NOT: md5 22 ; ASM-5: .file 0 "/scratch" "t.c" md5 0x00000000000000000000000000000000 23 ; ASM-5: .file 1 "t1.h" md5 0x11111111111111111111111111111111 24 ; ASM-5: .file 2 "t2.h" md5 0x22222222222222222222222222222222
|
| /llvm-project/compiler-rt/test/profile/ |
| H A D | instrprof-order-file.test | 11 // Make sure we have MD5 for main, then f, then g. 15 // MAPPING: MD5 cc914f75dd4ca18f f 16 // MAPPING: MD5 b671664347fff5b2 g 17 // MAPPING: MD5 db956436e78dd5fa main
|
| /llvm-project/llvm/test/tools/llvm-profdata/ |
| H A D | sample-nametable.test | 3 1- Multiple fixed-length MD5 name tables. Reading a new table should clear the content from old tab… 6 …ricks the reader into expecting fixed-length MD5 values. Reader should not attempt "lazy loading" …
|
| /llvm-project/clang/include/clang/Frontend/ |
| H A D | PrecompiledPreamble.h | 20 #include "llvm/Support/MD5.h" 151 /// Memory buffers have MD5 instead of modification time. We don't 152 /// compute MD5 for on-disk files because we hope that modification time is 154 llvm::MD5::MD5Result MD5 = {}; member 163 LHS.MD5 == RHS.MD5;
|
| /llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | NameAnonGlobals.cpp | 17 #include "llvm/Support/MD5.h" 38 MD5 Hasher; in get() 53 MD5::MD5Result Hash; in get() 56 MD5::stringifyResult(Hash, Result); in get()
|
| /llvm-project/clang-tools-extra/test/clang-tidy/checkers/google/ |
| H A D | objc-function-naming.m | 40 static const char *md5(const char *str) { return 0; } function 41 // CHECK-MESSAGES: :[[@LINE-1]]:20: warning: static function named 'md5' must be 43 // CHECK-FIXES: static const char *Md5(const char *str) { return 0; } 45 static const char *MD5(const char *str) { return 0; } function
|
| /llvm-project/llvm/include/llvm/ProfileData/ |
| H A D | FunctionId.h | 21 #include "llvm/Support/MD5.h" 30 /// MD5 of the function name for efficient storage supported by ExtBinary 40 // Use uint64_t instead of size_t so that it can also hold a MD5 value on 112 "Cannot convert MD5 FunctionId to StringRef"); in stringRef() 119 /// already representing one, otherwise returns the MD5 of its string content. 121 /// consistency that the same sample profile function in string form or MD5
|
| H A D | InstrProf.h | 33 #include "llvm/Support/MD5.h" 470 // going to be sorted) has unique MD5 keys in the first place. 477 // A map from MD5 keys to function name strings. 479 // A map from MD5 keys to function define. We only populate this map 482 // A map from MD5 to the global variable. This map is only populated when 488 // A map from function runtime address to function name MD5 hash. 582 // Map the MD5 of the symbol name to the name. in addSymbolName() 617 /// Map a function address to its name's MD5 hash. This interface 624 /// to its names' MD5 hash. This interface is only used by the raw profile 641 /// Return name of functions or global variables from the name's md5 has in isExternalSymbol() 1057 MD5, global() enumerator [all...] |
| /llvm-project/lld/test/COFF/ |
| H A D | pdb-comdat.test | 34 CHECK: c:\src\llvm-project\build\pdb_comdat_main.c (MD5: F969E51BBE373436D81492EB61387F36) 35 CHECK: c:\src\llvm-project\build\foo.h (MD5: D74D834EFAC3AE2B45E606A8320B1D5C) 37 CHECK: c:\src\llvm-project\build\pdb_comdat_bar.c (MD5: 365279DB4FCBEDD721BBFC3B14A953C2) 104 REORDER: c:\src\llvm-project\build\pdb_comdat_bar.c (MD5: 365279DB4FCBEDD721BBFC3B14A953C2) 105 REORDER: c:\src\llvm-project\build\foo.h (MD5: D74D834EFAC3AE2B45E606A8320B1D5C)
|
| /llvm-project/llvm/test/Bitcode/ |
| H A D | thinlto-func-summary-vtableref-pgo.ll | 61 ; 1960855528937986108 is the MD5 hash of _ZTV4Base, and 62 ; 13870436605473471591 is the MD5 hash of _ZTV7Derived 64 ; 5459407273543877811 is the MD5 hash of _ZN4Base4funcEv, and 65 ; 6174874150489409711 is the MD5 hash of _ZN7Derived4funcEv
|
| /llvm-project/lldb/unittests/Utility/ |
| H A D | ChecksumTest.cpp | 15 static llvm::MD5::MD5Result hash1 = { 18 static llvm::MD5::MD5Result hash2 = { 21 static llvm::MD5::MD5Result hash3 = {
|
| /llvm-project/llvm/utils/ |
| H A D | UpdateCMakeLists.pl | 5 use Digest::MD5; 90 my $digestA = Digest::MD5->new->addfile(*FILE)->hexdigest; 96 my $digestB = Digest::MD5->new->addfile(*FILE)->hexdigest;
|
| /llvm-project/llvm/include/llvm/MC/ |
| H A D | MCDwarf.h | 23 #include "llvm/Support/MD5.h" 94 /// The MD5 checksum, if there is one. Non-owning pointer to data allocated 96 std::optional<MD5::MD5Result> Checksum; 290 std::optional<MD5::MD5Result> Checksum, in resetMD5Usage() 313 std::optional<MD5::MD5Result> Checksum, in resetFileTable() 344 std::optional<MD5::MD5Result> Checksum, in getFile() 352 std::optional<MD5::MD5Result> Checksum, 384 std::optional<MD5::MD5Result> Checksum, in setRootFile() 388 std::optional<MD5::MD5Result> Checksum, in setRootFile() 396 std::optional<MD5 [all...] |
| /llvm-project/compiler-rt/test/sanitizer_common/TestCases/NetBSD/ |
| H A D | md5.cpp | |
| /llvm-project/compiler-rt/test/sanitizer_common/TestCases/FreeBSD/ |
| H A D | md5.cpp | |