Searched refs:ROTATE_LEFT (Results 1 - 8 of 8) sorted by relevance

/illumos-gate/usr/src/common/crypto/sha1/
H A Dsha1.c98 * ROTATE_LEFT rotates x left n bits.
103 ROTATE_LEFT(uint64_t value, uint32_t n) function
113 #define ROTATE_LEFT(x, n) \ macro
683 e = ROTATE_LEFT(a, 5) + F(b, c, d) + e + W(0) + SHA1_CONST(0); /* 0 */
684 b = ROTATE_LEFT(b, 30);
686 d = ROTATE_LEFT(e, 5) + F(a, b, c) + d + W(1) + SHA1_CONST(0); /* 1 */
687 a = ROTATE_LEFT(a, 30);
689 c = ROTATE_LEFT(d, 5) + F(e, a, b) + c + W(2) + SHA1_CONST(0); /* 2 */
690 e = ROTATE_LEFT(e, 30);
692 b = ROTATE_LEFT(
[all...]
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dmd5.c52 /* ROTATE_LEFT rotates x left n bits.
54 #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x >> (32 - (n))))) macro
109 tmp = ROTATE_LEFT (tmp, s1[i & 3]);
117 tmp = ROTATE_LEFT (tmp, s2[i & 3]);
125 tmp = ROTATE_LEFT (tmp, s3[i & 3]);
133 tmp = ROTATE_LEFT (tmp, s4[i & 3]);
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/crypto/md4/
H A Dmd4.c66 /* ROTATE_LEFT rotates x left n bits */
67 #define ROTATE_LEFT(x, n) ((((x) << (n)) & 0xffffffff) | ((x) >> (32-(n)))) macro
74 (a) = ROTATE_LEFT ((a), (s));}
78 (a) = ROTATE_LEFT ((a), (s));}
82 (a) = ROTATE_LEFT ((a), (s));}
/illumos-gate/usr/src/common/crypto/md4/
H A Dmd4.c79 * ROTATE_LEFT rotates x left n bits.
81 #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n)))) macro
88 (a) = ROTATE_LEFT((a), (s)); \
92 (a) = ROTATE_LEFT((a), (s)); \
96 (a) = ROTATE_LEFT((a), (s)); \
/illumos-gate/usr/src/lib/gss_mechs/mech_dh/backend/crypto/
H A Dmd5.c75 /* ROTATE_LEFT rotates x left n bits */
76 #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n)))) macro
82 (a) = ROTATE_LEFT ((a), (s)); \
87 (a) = ROTATE_LEFT ((a), (s)); \
92 (a) = ROTATE_LEFT ((a), (s)); \
97 (a) = ROTATE_LEFT ((a), (s)); \
/illumos-gate/usr/src/lib/libsasl/lib/
H A Dmd5.c102 /* ROTATE_LEFT rotates x left n bits.
106 #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n)))) macro
112 #define FF(a, b, c, d, x, s, ac) { (a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); (a) = ROTATE_LEFT ((a), (s)); (a) += (b); }
113 #define GG(a, b, c, d, x, s, ac) { (a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); (a) = ROTATE_LEFT ((a), (s)); (a) += (b); }
114 #define HH(a, b, c, d, x, s, ac) { (a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); (a) = ROTATE_LEFT ((a), (s)); (a) += (b); }
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); }
/illumos-gate/usr/src/lib/libsum/common/
H A Dsum-md5.c172 /* ROTATE_LEFT rotates x left n bits */
173 #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n)))) macro
179 (a) = ROTATE_LEFT ((a), (s)); \
184 (a) = ROTATE_LEFT ((a), (s)); \
189 (a) = ROTATE_LEFT ((a), (s)); \
194 (a) = ROTATE_LEFT ((a), (s)); \
/illumos-gate/usr/src/common/crypto/md5/
H A Dmd5.c76 * ROTATE_LEFT rotates x left n bits.
78 #define ROTATE_LEFT(x, n) \ macro
88 (a) = ROTATE_LEFT((a), (s)); \
94 (a) = ROTATE_LEFT((a), (s)); \
100 (a) = ROTATE_LEFT((a), (s)); \
106 (a) = ROTATE_LEFT((a), (s)); \

Completed in 64 milliseconds