Lines Matching defs:UINT4
55 typedef uint32_t UINT4;
61 UINT4 state[4]; /* state (ABCD) */
62 UINT4 count[2]; /* # bits handled mod 2^64 (lsb)*/
86 md5_encode(register unsigned char* output, register UINT4* input, unsigned int len)
106 md5_decode(register UINT4* output, register unsigned char* input, unsigned int len)
112 output[i] = ((UINT4)input[j]) |
113 (((UINT4)input[j+1]) << 8) |
114 (((UINT4)input[j+2]) << 16) |
115 (((UINT4)input[j+3]) << 24);
178 (a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); \
183 (a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); \
188 (a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); \
193 (a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); \
199 md5_transform(UINT4 state[4], unsigned char block[64])
201 UINT4 a = state[0];
202 UINT4 b = state[1];
203 UINT4 c = state[2];
204 UINT4 d = state[3];
205 UINT4 x[16];
300 if ((context->count[0] += ((UINT4)inputLen << 3)) < ((UINT4)inputLen << 3))
302 context->count[1] += ((UINT4)inputLen >> 29);