Searched refs:md5byte (Results 1 - 3 of 3) sorted by relevance

/external/libvpx/libvpx/
H A Dmd5_utils.h30 #define md5byte unsigned char macro
41 void MD5Update(struct MD5Context *context, md5byte const *buf, unsigned len);
H A Dmd5_utils.c28 md5byte *p;
35 p = (md5byte *)buf;
62 void MD5Update(struct MD5Context *ctx, md5byte const *buf, unsigned len) {
75 memcpy((md5byte *)ctx->in + 64 - t, buf, len);
80 memcpy((md5byte *)ctx->in + 64 - t, buf, t);
103 void MD5Final(md5byte digest[16], struct MD5Context *ctx) {
105 md5byte *p = (md5byte *)ctx->in + count;
117 p = (md5byte *)ctx->in;
H A Dvpxdec.c942 MD5Update(&md5_ctx, (md5byte *)buf, (unsigned int)len);
951 MD5Update(&md5_ctx, (md5byte *)buf, (unsigned int)len);

Completed in 1527 milliseconds