Lines Matching defs:MD5
23 #include "llvm/Support/MD5.h"
81 llvm::MD5 MD5;
971 // Pass through MD5 if enough work has built up.
976 MD5.update(llvm::ArrayRef((uint8_t *)&Swapped, sizeof(Swapped)));
986 // Use Working as the hash directly if we never used MD5.
998 MD5.update({(uint8_t)Working});
1003 MD5.update(llvm::ArrayRef((uint8_t *)&Swapped, sizeof(Swapped)));
1007 // Finalize the MD5 and return the hash.
1008 llvm::MD5::MD5Result Result;
1009 MD5.final(Result);