Lines Matching full:uint32
76 static const UInt32 K[64] = {
95 static void Sha256_Transform(UInt32 *state, const UInt32 *data)
97 UInt32 W[16];
100 UInt32 a,b,c,d,e,f,g,h;
110 UInt32 T[8];
151 UInt32 data32[16];
155 ((UInt32)(p->buffer[i * 4 ]) << 24) +
156 ((UInt32)(p->buffer[i * 4 + 1]) << 16) +
157 ((UInt32)(p->buffer[i * 4 + 2]) << 8) +
158 ((UInt32)(p->buffer[i * 4 + 3]));
164 UInt32 curBufferPos = (UInt32)p->count & 0x3F;
181 UInt32 curBufferPos = (UInt32)p->count & 0x3F;