Symbol: UINT4
common/lib/libc/md/md4c.c
112
(a) += G ((b), (c), (d)) + (x) + (UINT4)0x5a827999; \
common/lib/libc/md/md4c.c
117
(a) += H ((b), (c), (d)) + (x) + (UINT4)0x6ed9eba1; \
common/lib/libc/md/md4c.c
165
if ((context->count[0] += ((UINT4)inputLen << 3))
common/lib/libc/md/md4c.c
166
< ((UINT4)inputLen << 3))
common/lib/libc/md/md4c.c
168
context->count[1] += ((UINT4)inputLen >> 29);
common/lib/libc/md/md4c.c
224
MD4Transform (UINT4 state[4], const unsigned char block[64])
common/lib/libc/md/md4c.c
226
UINT4 a = state[0], b = state[1], c = state[2], d = state[3], x[16];
common/lib/libc/md/md4c.c
298
Encode(unsigned char *output, UINT4 *input, unsigned int len)
common/lib/libc/md/md4c.c
315
Decode(UINT4 *output, const unsigned char *input, unsigned int len)
common/lib/libc/md/md4c.c
320
output[i] = ((UINT4)input[j]) | (((UINT4)input[j+1]) << 8) |
common/lib/libc/md/md4c.c
321
(((UINT4)input[j+2]) << 16) | (((UINT4)input[j+3]) << 24);
common/lib/libc/md/md4c.c
79
static void MD4Transform(UINT4 [4], const unsigned char [64]);
common/lib/libc/md/md4c.c
81
static void Encode(unsigned char *, UINT4 *, unsigned int);
common/lib/libc/md/md4c.c
82
static void Decode(UINT4 *, const unsigned char *, unsigned int);
common/lib/libc/md/md5c.c
116
Decode (UINT4 *output,
common/lib/libc/md/md5c.c
123
output[i] = ((UINT4)input[j]) | (((UINT4)input[j+1]) << 8) |
common/lib/libc/md/md5c.c
124
(((UINT4)input[j+2]) << 16) | (((UINT4)input[j+3]) << 24);
common/lib/libc/md/md5c.c
151
(a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); \
common/lib/libc/md/md5c.c
157
(a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); \
common/lib/libc/md/md5c.c
163
(a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); \
common/lib/libc/md/md5c.c
169
(a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); \
common/lib/libc/md/md5c.c
211
if ((context->count[0] += ((UINT4)inputLen << 3))
common/lib/libc/md/md5c.c
212
< ((UINT4)inputLen << 3))
common/lib/libc/md/md5c.c
214
context->count[1] += ((UINT4)inputLen >> 29);
common/lib/libc/md/md5c.c
270
MD5Transform(UINT4 state[4], const unsigned char block[64])
common/lib/libc/md/md5c.c
272
UINT4 a = state[0], b = state[1], c = state[2], d = state[3], x[16];
common/lib/libc/md/md5c.c
87
static void MD5Transform(UINT4 [4], const unsigned char [64]);
common/lib/libc/md/md5c.c
89
static void Encode(unsigned char *, UINT4 *, unsigned int);
common/lib/libc/md/md5c.c
90
static void Decode(UINT4 *, const unsigned char *, unsigned int);
common/lib/libc/md/md5c.c
98
UINT4 *input,