Lines Matching refs:UINT4
55 typedef uint32_t UINT4; typedef
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) in md5_encode()
106 md5_decode(register UINT4* output, register unsigned char* input, unsigned int len) in md5_decode()
112 output[i] = ((UINT4)input[j]) | in md5_decode()
113 (((UINT4)input[j+1]) << 8) | in md5_decode()
114 (((UINT4)input[j+2]) << 16) | in md5_decode()
115 (((UINT4)input[j+3]) << 24); in md5_decode()
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]) in md5_transform()
201 UINT4 a = state[0]; in md5_transform()
202 UINT4 b = state[1]; in md5_transform()
203 UINT4 c = state[2]; in md5_transform()
204 UINT4 d = state[3]; in md5_transform()
205 UINT4 x[16]; in md5_transform()
300 if ((context->count[0] += ((UINT4)inputLen << 3)) < ((UINT4)inputLen << 3)) in md5_block()
302 context->count[1] += ((UINT4)inputLen >> 29); in md5_block()