Lines Matching defs:MD5
22 #include "llvm/Support/MD5.h"
80 llvm::MD5 MD5;
970 // Pass through MD5 if enough work has built up.
975 MD5.update(llvm::ArrayRef((uint8_t *)&Swapped, sizeof(Swapped)));
985 // Use Working as the hash directly if we never used MD5.
997 MD5.update({(uint8_t)Working});
1002 MD5.update(llvm::ArrayRef((uint8_t *)&Swapped, sizeof(Swapped)));
1006 // Finalize the MD5 and return the hash.
1007 llvm::MD5::MD5Result Result;
1008 MD5.final(Result);