Lines Matching full:uint32
31 uint32 buf[4];
32 uint32 bits[2];
40 uint32 t;
42 t = (uint32)((unsigned)buf[3]<<8 | buf[2]) << 16 |
44 *(uint32 *)buf = t;
66 void MD5Transform(uint32 buf[4], const uint32 in[16]) {
67 register uint32 a, b, c, d;
175 uint32 t;
180 if ((ctx->bits[0] = t + ((uint32)len << 3)) < t)
182 ctx->bits[1] += static_cast<uint32>(len >> 29);
198 MD5Transform(ctx->buf, (uint32 *)ctx->in);
208 MD5Transform(ctx->buf, (uint32 *)ctx->in);
243 MD5Transform(ctx->buf, (uint32 *)ctx->in);
254 ((uint32 *)ctx->in)[ 14 ] = ctx->bits[0];
255 ((uint32 *)ctx->in)[ 15 ] = ctx->bits[1];
257 MD5Transform(ctx->buf, (uint32 *)ctx->in);