Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:MD5

24 #include "llvm/Support/MD5.h"
59 llvm::MD5 MD5;
576 // Pass through MD5 if enough work has built up.
580 MD5.update(llvm::makeArrayRef((uint8_t *)&Swapped, sizeof(Swapped)));
590 // Use Working as the hash directly if we never used MD5.
599 MD5.update(Working);
601 // Finalize the MD5 and return the hash.
602 llvm::MD5::MD5Result Result;
603 MD5.final(Result);