Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:MD5

22 #include "llvm/Support/MD5.h"
218 llvm::MD5 MD5;
749 // Pass through MD5 if enough work has built up.
753 MD5.update(llvm::makeArrayRef((uint8_t *)&Swapped, sizeof(Swapped)));
763 // Use Working as the hash directly if we never used MD5.
772 MD5.update(Working);
774 // Finalize the MD5 and return the hash.
775 llvm::MD5::MD5Result Result;
776 MD5.final(Result);