Lines Matching refs:uint32
53 #ifndef uint32
54 # define uint32 unsigned int macro
59 uint32 buf[4];
60 uint32 bits[2];
69 uint32 t; in byteReverse()
71 t = (uint32)((unsigned)buf[3]<<8 | buf[2]) << 16 | in byteReverse()
73 *(uint32 *)buf = t; in byteReverse()
94 static void MD5Transform(uint32 buf[4], const uint32 in[16]){ in MD5Transform()
95 register uint32 a, b, c, d; in MD5Transform()
196 uint32 t; in MD5Update()
201 if ((ctx->bits[0] = t + ((uint32)len << 3)) < t) in MD5Update()
219 MD5Transform(ctx->buf, (uint32 *)ctx->in); in MD5Update()
229 MD5Transform(ctx->buf, (uint32 *)ctx->in); in MD5Update()
263 MD5Transform(ctx->buf, (uint32 *)ctx->in); in MD5Final()
276 MD5Transform(ctx->buf, (uint32 *)ctx->in); in MD5Final()