Searched defs:II (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/lib/gss_mechs/mech_dh/backend/crypto/
H A Dmd5.c78 /* FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4 */
95 #define II(a, b, c, d, x, s, ac) \ macro
276 II (a, b, c, d, in[ 0], S41, 4096336452U); /* 49 */
277 II (d, a, b, c, in[ 7], S42, 1126891415U); /* 50 */
278 II (c, d, a, b, in[14], S43, 2878612391U); /* 51 */
279 II (b, c, d, a, in[ 5], S44, 4237533241U); /* 52 */
280 II (a, b, c, d, in[12], S41, 1700485571U); /* 53 */
281 II (d, a, b, c, in[ 3], S42, 2399980690U); /* 54 */
282 II (c, d, a, b, in[10], S43, 4293915773U); /* 55 */
283 II (
[all...]
/illumos-gate/usr/src/lib/libsasl/lib/
H A Dmd5.c108 /* FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4.
115 #define II(a, b, c, d, x, s, ac) { (a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); (a) = ROTATE_LEFT ((a), (s)); (a) += (b); } macro
272 II (a, b, c, d, x[ 0], S41, 0xf4292244); /* 49 */
273 II (d, a, b, c, x[ 7], S42, 0x432aff97); /* 50 */
274 II (c, d, a, b, x[14], S43, 0xab9423a7); /* 51 */
275 II (b, c, d, a, x[ 5], S44, 0xfc93a039); /* 52 */
276 II (a, b, c, d, x[12], S41, 0x655b59c3); /* 53 */
277 II (d, a, b, c, x[ 3], S42, 0x8f0ccc92); /* 54 */
278 II (c, d, a, b, x[10], S43, 0xffeff47d); /* 55 */
279 II (
[all...]
/illumos-gate/usr/src/common/crypto/md5/
H A Dmd5.c82 * FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4.
104 #define II(a, b, c, d, x, s, ac) { \ macro
617 II(a, b, c, d, x_0, MD5_SHIFT_41, MD5_CONST_e(48)); /* 49 */
618 II(d, a, b, c, x_7, MD5_SHIFT_42, MD5_CONST_o(49)); /* 50 */
619 II(c, d, a, b, x_14, MD5_SHIFT_43, MD5_CONST_e(50)); /* 51 */
620 II(b, c, d, a, x_5, MD5_SHIFT_44, MD5_CONST_o(51)); /* 52 */
621 II(a, b, c, d, x_12, MD5_SHIFT_41, MD5_CONST_e(52)); /* 53 */
622 II(d, a, b, c, x_3, MD5_SHIFT_42, MD5_CONST_o(53)); /* 54 */
623 II(c, d, a, b, x_10, MD5_SHIFT_43, MD5_CONST_e(54)); /* 55 */
624 II(
[all...]
/illumos-gate/usr/src/cmd/avs/dsbitmap/
H A Ddsbitmap.c54 enum { UNKNOWN = 0, SNDR, II }; enumerator in enum:__anon26
343 * 5 II bitmap is not large enough for any usage
344 * 6 II bitmap is not large enough for compact dependent usage
369 type = II;
424 case II:
/illumos-gate/usr/src/lib/libsum/common/
H A Dsum-md5.c175 /* FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4 */
192 #define II(a, b, c, d, x, s, ac) { \ macro
264 II (a, b, c, d, x[ 0], S41, 0xf4292244); /* 49 */
265 II (d, a, b, c, x[ 7], S42, 0x432aff97); /* 50 */
266 II (c, d, a, b, x[14], S43, 0xab9423a7); /* 51 */
267 II (b, c, d, a, x[ 5], S44, 0xfc93a039); /* 52 */
268 II (a, b, c, d, x[12], S41, 0x655b59c3); /* 53 */
269 II (d, a, b, c, x[ 3], S42, 0x8f0ccc92); /* 54 */
270 II (c, d, a, b, x[10], S43, 0xffeff47d); /* 55 */
271 II (
[all...]

Completed in 48 milliseconds