Symbol: UINT4
sbin/ipf/ipftest/md5.c
109
mdContext->i[0] = mdContext->i[1] = (UINT4)0;
sbin/ipf/ipftest/md5.c
113
mdContext->buf[0] = (UINT4)0x67452301;
sbin/ipf/ipftest/md5.c
114
mdContext->buf[1] = (UINT4)0xefcdab89;
sbin/ipf/ipftest/md5.c
115
mdContext->buf[2] = (UINT4)0x98badcfe;
sbin/ipf/ipftest/md5.c
116
mdContext->buf[3] = (UINT4)0x10325476;
sbin/ipf/ipftest/md5.c
125
UINT4 in[16];
sbin/ipf/ipftest/md5.c
133
if ((mdContext->i[0] + ((UINT4)inLen << 3)) < mdContext->i[0])
sbin/ipf/ipftest/md5.c
135
mdContext->i[0] += ((UINT4)inLen << 3);
sbin/ipf/ipftest/md5.c
136
mdContext->i[1] += ((UINT4)inLen >> 29);
sbin/ipf/ipftest/md5.c
145
in[i] = (((UINT4)mdContext->in[ii+3]) << 24) |
sbin/ipf/ipftest/md5.c
146
(((UINT4)mdContext->in[ii+2]) << 16) |
sbin/ipf/ipftest/md5.c
147
(((UINT4)mdContext->in[ii+1]) << 8) |
sbin/ipf/ipftest/md5.c
148
((UINT4)mdContext->in[ii]);
sbin/ipf/ipftest/md5.c
160
UINT4 in[16];
sbin/ipf/ipftest/md5.c
178
in[i] = (((UINT4)mdContext->in[ii+3]) << 24) |
sbin/ipf/ipftest/md5.c
179
(((UINT4)mdContext->in[ii+2]) << 16) |
sbin/ipf/ipftest/md5.c
180
(((UINT4)mdContext->in[ii+1]) << 8) |
sbin/ipf/ipftest/md5.c
181
((UINT4)mdContext->in[ii]);
sbin/ipf/ipftest/md5.c
199
static void Transform (UINT4 *buf, UINT4 *in)
sbin/ipf/ipftest/md5.c
201
UINT4 a = buf[0], b = buf[1], c = buf[2], d = buf[3];
sbin/ipf/ipftest/md5.c
57
static void Transform(UINT4 *, UINT4 *);
sbin/ipf/ipftest/md5.c
82
{(a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); \
sbin/ipf/ipftest/md5.c
87
{(a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); \
sbin/ipf/ipftest/md5.c
92
{(a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); \
sbin/ipf/ipftest/md5.c
97
{(a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); \
sbin/ipf/ipftest/md5.h
52
UINT4 i[2]; /* number of _bits_ handled mod 2^64 */
sbin/ipf/ipftest/md5.h
53
UINT4 buf[4]; /* scratch buffer */
sys/crypto/md4c.c
122
if ((context->count[0] += ((UINT4)inputLen << 3))
sys/crypto/md4c.c
123
< ((UINT4)inputLen << 3))
sys/crypto/md4c.c
125
context->count[1] += ((UINT4)inputLen >> 29);
sys/crypto/md4c.c
186
MD4Transform(UINT4 state[4], const unsigned char block[64])
sys/crypto/md4c.c
188
UINT4 a = state[0], b = state[1], c = state[2], d = state[3], x[16];
sys/crypto/md4c.c
260
Encode(unsigned char *output, UINT4 *input, unsigned int len)
sys/crypto/md4c.c
276
Decode(UINT4 *output, const unsigned char *input, unsigned int len)
sys/crypto/md4c.c
281
output[i] = ((UINT4)input[j]) | (((UINT4)input[j+1]) << 8) |
sys/crypto/md4c.c
282
(((UINT4)input[j+2]) << 16) | (((UINT4)input[j+3]) << 24);
sys/crypto/md4c.c
57
static void MD4Transform PROTO_LIST ((UINT4 [4], const unsigned char [64]));
sys/crypto/md4c.c
59
((unsigned char *, UINT4 *, unsigned int));
sys/crypto/md4c.c
61
((UINT4 *, const unsigned char *, unsigned int));
sys/crypto/md4c.c
86
(a) += G ((b), (c), (d)) + (x) + (UINT4)0x5a827999; \
sys/crypto/md4c.c
90
(a) += H ((b), (c), (d)) + (x) + (UINT4)0x6ed9eba1; \