Lines Matching defs:UINT4
58 typedef uint32_t UINT4;
87 static void MD5Transform(UINT4 [4], const unsigned char [64]);
89 static void Encode(unsigned char *, UINT4 *, unsigned int);
90 static void Decode(UINT4 *, const unsigned char *, unsigned int);
93 * Encodes input (UINT4) into output (unsigned char). Assumes len is
98 UINT4 *input,
112 * Decodes input (unsigned char) into output (UINT4). Assumes len is
116 Decode (UINT4 *output,
123 output[i] = ((UINT4)input[j]) | (((UINT4)input[j+1]) << 8) |
124 (((UINT4)input[j+2]) << 16) | (((UINT4)input[j+3]) << 24);
151 (a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); \
157 (a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); \
163 (a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); \
169 (a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); \
211 if ((context->count[0] += ((UINT4)inputLen << 3))
212 < ((UINT4)inputLen << 3))
214 context->count[1] += ((UINT4)inputLen >> 29);
270 MD5Transform(UINT4 state[4], const unsigned char block[64])
272 UINT4 a = state[0], b = state[1], c = state[2], d = state[3], x[16];