Home | History | Annotate | Download | only in base

Lines Matching refs:uint32

28   uint32 buf[4];
29 uint32 bits[2];
37 uint32 t;
39 t = (uint32)((unsigned)buf[3]<<8 | buf[2]) << 16 |
41 *(uint32 *)buf = t;
62 static void MD5Transform(uint32 buf[4], const uint32 in[16]){
63 register uint32 a, b, c, d;
165 uint32 t;
170 if ((ctx->bits[0] = t + ((uint32)len << 3)) < t)
172 ctx->bits[1] += static_cast<uint32>(len >> 29);
188 MD5Transform(ctx->buf, (uint32 *)ctx->in);
198 MD5Transform(ctx->buf, (uint32 *)ctx->in);
233 MD5Transform(ctx->buf, (uint32 *)ctx->in);
244 ((uint32 *)ctx->in)[ 14 ] = ctx->bits[0];
245 ((uint32 *)ctx->in)[ 15 ] = ctx->bits[1];
247 MD5Transform(ctx->buf, (uint32 *)ctx->in);