Symbol: ROTATE
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
163
FF (a, b, c, d, in[i], round1consts[i%4]); ROTATE;
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
170
GG (a, b, c, d, in[round2indices[i]], round2consts[i%4]); ROTATE;
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
177
HH (a, b, c, d, in[round3indices[i]], round3consts[i%4]); ROTATE;
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
209
ROTATE;
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
221
ROTATE;
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
233
ROTATE;
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
245
ROTATE;
crypto/openssh/chacha.c
46
a = PLUS(a,b); d = ROTATE(XOR(d,a),16); \
crypto/openssh/chacha.c
47
c = PLUS(c,d); b = ROTATE(XOR(b,c),12); \
crypto/openssh/chacha.c
48
a = PLUS(a,b); d = ROTATE(XOR(d,a), 8); \
crypto/openssh/chacha.c
49
c = PLUS(c,d); b = ROTATE(XOR(b,c), 7);
crypto/openssh/openbsd-compat/chacha_private.h
48
a = PLUS(a,b); d = ROTATE(XOR(d,a),16); \
crypto/openssh/openbsd-compat/chacha_private.h
49
c = PLUS(c,d); b = ROTATE(XOR(b,c),12); \
crypto/openssh/openbsd-compat/chacha_private.h
50
a = PLUS(a,b); d = ROTATE(XOR(d,a), 8); \
crypto/openssh/openbsd-compat/chacha_private.h
51
c = PLUS(c,d); b = ROTATE(XOR(b,c), 7);
crypto/openssl/crypto/aes/aes_core.c
3614
#if defined(ROTATE)
crypto/openssl/crypto/aes/aes_core.c
3615
rk[j] = tpe ^ ROTATE(tpd, 16) ^ ROTATE(tp9, 24) ^ ROTATE(tpb, 8);
crypto/openssl/crypto/aes/aes_x86core.c
610
#if defined(ROTATE)
crypto/openssl/crypto/aes/aes_x86core.c
611
rk[j] = tpe ^ ROTATE(tpd, 16) ^ ROTATE(tp9, 8) ^ ROTATE(tpb, 24);
crypto/openssl/crypto/aes/aes_x86core.c
667
#if defined(ROTATE)
crypto/openssl/crypto/aes/aes_x86core.c
668
t[i] = r2 ^ ROTATE(r2, 24) ^ ROTATE(r0, 24) ^ ROTATE(r0, 16) ^ ROTATE(r0, 8);
crypto/openssl/crypto/aes/aes_x86core.c
705
#if defined(ROTATE)
crypto/openssl/crypto/aes/aes_x86core.c
706
t[i] = r2 ^ ROTATE(r2, 24) ^ ROTATE(r0, 24) ^ ROTATE(r0, 16) ^ ROTATE(r0, 8);
crypto/openssl/crypto/aes/aes_x86core.c
792
#if defined(ROTATE)
crypto/openssl/crypto/aes/aes_x86core.c
793
t[i] = tpe ^ ROTATE(tpd, 16) ^ ROTATE(tp9, 8) ^ ROTATE(tpb, 24);
crypto/openssl/crypto/aes/aes_x86core.c
838
#if defined(ROTATE)
crypto/openssl/crypto/aes/aes_x86core.c
839
t[i] = tpe ^ ROTATE(tpd, 16) ^ ROTATE(tp9, 8) ^ ROTATE(tpb, 24);
crypto/openssl/crypto/chacha/chacha_enc.c
58
x[a] += x[b], x[d] = ROTATE((x[d] ^ x[a]), 16), \
crypto/openssl/crypto/chacha/chacha_enc.c
59
x[c] += x[d], x[b] = ROTATE((x[b] ^ x[c]), 12), \
crypto/openssl/crypto/chacha/chacha_enc.c
60
x[a] += x[b], x[d] = ROTATE((x[d] ^ x[a]), 8), \
crypto/openssl/crypto/chacha/chacha_enc.c
61
x[c] += x[d], x[b] = ROTATE((x[b] ^ x[c]), 7))
crypto/openssl/crypto/des/des_enc.c
106
r = ROTATE(r, 29) & 0xffffffffL;
crypto/openssl/crypto/des/des_enc.c
107
l = ROTATE(l, 29) & 0xffffffffL;
crypto/openssl/crypto/des/des_enc.c
150
data[0] = ROTATE(l, 3) & 0xffffffffL;
crypto/openssl/crypto/des/des_enc.c
151
data[1] = ROTATE(r, 3) & 0xffffffffL;
crypto/openssl/crypto/des/des_enc.c
37
r = ROTATE(r, 29) & 0xffffffffL;
crypto/openssl/crypto/des/des_enc.c
38
l = ROTATE(l, 29) & 0xffffffffL;
crypto/openssl/crypto/des/des_enc.c
82
l = ROTATE(l, 3) & 0xffffffffL;
crypto/openssl/crypto/des/des_enc.c
83
r = ROTATE(r, 3) & 0xffffffffL;
crypto/openssl/crypto/des/des_local.h
131
#ifndef ROTATE
crypto/openssl/crypto/des/des_local.h
174
t = ROTATE(t, 4); \
crypto/openssl/crypto/des/fcrypt_b.c
67
l = ROTATE(l, 3) & 0xffffffffL;
crypto/openssl/crypto/des/fcrypt_b.c
68
r = ROTATE(r, 3) & 0xffffffffL;
crypto/openssl/crypto/des/set_key.c
761
*(k++) = ROTATE(t2, 30) & 0xffffffffL;
crypto/openssl/crypto/des/set_key.c
764
*(k++) = ROTATE(t2, 26) & 0xffffffffL;
crypto/openssl/crypto/md4/md4_local.h
58
a = ROTATE(a, s); \
crypto/openssl/crypto/md4/md4_local.h
64
a = ROTATE(a, s); \
crypto/openssl/crypto/md4/md4_local.h
70
a = ROTATE(a, s); \
crypto/openssl/crypto/md5/md5_local.h
69
a = ROTATE(a, s); \
crypto/openssl/crypto/md5/md5_local.h
76
a = ROTATE(a, s); \
crypto/openssl/crypto/md5/md5_local.h
83
a = ROTATE(a, s); \
crypto/openssl/crypto/md5/md5_local.h
90
a = ROTATE(a, s); \
crypto/openssl/crypto/ripemd/rmd_local.h
101
a = ROTATE(a, s) + e; \
crypto/openssl/crypto/ripemd/rmd_local.h
102
c = ROTATE(c, 10); \
crypto/openssl/crypto/ripemd/rmd_local.h
73
a = ROTATE(a, s) + e; \
crypto/openssl/crypto/ripemd/rmd_local.h
74
c = ROTATE(c, 10); \
crypto/openssl/crypto/ripemd/rmd_local.h
80
a = ROTATE(a, s) + e; \
crypto/openssl/crypto/ripemd/rmd_local.h
81
c = ROTATE(c, 10); \
crypto/openssl/crypto/ripemd/rmd_local.h
87
a = ROTATE(a, s) + e; \
crypto/openssl/crypto/ripemd/rmd_local.h
88
c = ROTATE(c, 10); \
crypto/openssl/crypto/ripemd/rmd_local.h
94
a = ROTATE(a, s) + e; \
crypto/openssl/crypto/ripemd/rmd_local.h
95
c = ROTATE(c, 10); \
crypto/openssl/crypto/sha/sha256.c
196
#define Sigma0(x) (ROTATE((x), 30) ^ ROTATE((x), 19) ^ ROTATE((x), 10))
crypto/openssl/crypto/sha/sha256.c
199
#define Sigma1(x) (ROTATE((x), 26) ^ ROTATE((x), 21) ^ ROTATE((x), 7))
crypto/openssl/crypto/sha/sha256.c
202
#define sigma0(x) (ROTATE((x), 25) ^ ROTATE((x), 14) ^ ((x) >> 3))
crypto/openssl/crypto/sha/sha256.c
205
#define sigma1(x) (ROTATE((x), 15) ^ ROTATE((x), 13) ^ ((x) >> 10))
crypto/openssl/crypto/sha/sha_local.h
101
(f) += (e) + K_20_39 + ROTATE((a), 5) + F_20_39((b), (c), (d)); \
crypto/openssl/crypto/sha/sha_local.h
102
(b) = ROTATE((b), 30);
crypto/openssl/crypto/sha/sha_local.h
106
(f) += (e) + K_20_39 + ROTATE((a), 5) + F_20_39((b), (c), (d)); \
crypto/openssl/crypto/sha/sha_local.h
107
(b) = ROTATE((b), 30);
crypto/openssl/crypto/sha/sha_local.h
111
(f) += (e) + K_40_59 + ROTATE((a), 5) + F_40_59((b), (c), (d)); \
crypto/openssl/crypto/sha/sha_local.h
112
(b) = ROTATE((b), 30);
crypto/openssl/crypto/sha/sha_local.h
116
(f) = xa + (e) + K_60_79 + ROTATE((a), 5) + F_60_79((b), (c), (d)); \
crypto/openssl/crypto/sha/sha_local.h
117
(b) = ROTATE((b), 30);
crypto/openssl/crypto/sha/sha_local.h
343
E = D, D = C, C = ROTATE(B, 30), B = A; \
crypto/openssl/crypto/sha/sha_local.h
344
A = ROTATE(A, 5) + T + xi; \
crypto/openssl/crypto/sha/sha_local.h
351
E = D, D = C, C = ROTATE(B, 30), B = A; \
crypto/openssl/crypto/sha/sha_local.h
352
A = ROTATE(A, 5) + T; \
crypto/openssl/crypto/sha/sha_local.h
359
E = D, D = C, C = ROTATE(B, 30), B = A; \
crypto/openssl/crypto/sha/sha_local.h
360
A = ROTATE(A, 5) + T; \
crypto/openssl/crypto/sha/sha_local.h
367
E = D, D = C, C = ROTATE(B, 30), B = A; \
crypto/openssl/crypto/sha/sha_local.h
368
A = ROTATE(A, 5) + T; \
crypto/openssl/crypto/sha/sha_local.h
375
E = D, D = C, C = ROTATE(B, 30), B = A; \
crypto/openssl/crypto/sha/sha_local.h
376
A = ROTATE(A, 5) + T + xa; \
crypto/openssl/crypto/sha/sha_local.h
43
ix = (a) = ROTATE((a), 1))
crypto/openssl/crypto/sha/sha_local.h
91
(f) = xi + (e) + K_00_19 + ROTATE((a), 5) + F_00_19((b), (c), (d)); \
crypto/openssl/crypto/sha/sha_local.h
92
(b) = ROTATE((b), 30);
crypto/openssl/crypto/sha/sha_local.h
96
(f) += (e) + K_00_19 + ROTATE((a), 5) + F_00_19((b), (c), (d)); \
crypto/openssl/crypto/sha/sha_local.h
97
(b) = ROTATE((b), 30);
crypto/openssl/crypto/sm3/sm3_local.h
102
const SM3_WORD A12 = ROTATE(A, 12); \
crypto/openssl/crypto/sm3/sm3_local.h
104
const SM3_WORD SS1 = ROTATE(A12_SM, 7); \
crypto/openssl/crypto/sm3/sm3_local.h
107
B = ROTATE(B, 9); \
crypto/openssl/crypto/sm3/sm3_local.h
109
F = ROTATE(F, 19); \
crypto/openssl/crypto/sm3/sm3_local.h
85
#define P0(X) (X ^ ROTATE(X, 9) ^ ROTATE(X, 17))
crypto/openssl/crypto/sm3/sm3_local.h
88
#define P1(X) (X ^ ROTATE(X, 15) ^ ROTATE(X, 23))
crypto/openssl/crypto/sm3/sm3_local.h
98
(P1(W0 ^ W7 ^ ROTATE(W13, 15)) ^ ROTATE(W3, 7) ^ W10)
crypto/openssl/crypto/whrlpool/wp_block.c
143
#if !defined(ROTATE)
crypto/openssl/crypto/whrlpool/wp_block.c
150
#if defined(ROTATE) && !defined(STRICT_ALIGNMENT)
crypto/openssl/crypto/whrlpool/wp_block.c
179
#if defined(ROTATE)
crypto/openssl/crypto/whrlpool/wp_block.c
183
#define C1(K, i) ROTATE(Cx.q[K.c[(i) * 8 + 1]], 8)
crypto/openssl/crypto/whrlpool/wp_block.c
184
#define C2(K, i) ROTATE(Cx.q[K.c[(i) * 8 + 2]], 16)
crypto/openssl/crypto/whrlpool/wp_block.c
185
#define C3(K, i) ROTATE(Cx.q[K.c[(i) * 8 + 3]], 24)
crypto/openssl/crypto/whrlpool/wp_block.c
186
#define C4(K, i) ROTATE(Cx.q[K.c[(i) * 8 + 4]], 32)
crypto/openssl/crypto/whrlpool/wp_block.c
187
#define C5(K, i) ROTATE(Cx.q[K.c[(i) * 8 + 5]], 40)
crypto/openssl/crypto/whrlpool/wp_block.c
188
#define C6(K, i) ROTATE(Cx.q[K.c[(i) * 8 + 6]], 48)
crypto/openssl/crypto/whrlpool/wp_block.c
189
#define C7(K, i) ROTATE(Cx.q[K.c[(i) * 8 + 7]], 56)
lib/libmd/rmd_locl.h
166
(a)=((ROTATE(l,8)&0x00FF00FF)|(ROTATE(l,24)&0xFF00FF00)); \
lib/libmd/rmd_locl.h
174
(a)=ROTATE(l,16L); \
lib/libmd/rmd_locl.h
194
a=ROTATE(a,s)+e; \
lib/libmd/rmd_locl.h
195
c=ROTATE(c,10); }
lib/libmd/rmd_locl.h
199
a=ROTATE(a,s)+e; \
lib/libmd/rmd_locl.h
200
c=ROTATE(c,10); }
lib/libmd/rmd_locl.h
204
a=ROTATE(a,s)+e; \
lib/libmd/rmd_locl.h
205
c=ROTATE(c,10); }
lib/libmd/rmd_locl.h
209
a=ROTATE(a,s)+e; \
lib/libmd/rmd_locl.h
210
c=ROTATE(c,10); }
lib/libmd/rmd_locl.h
214
a=ROTATE(a,s)+e; \
lib/libmd/rmd_locl.h
215
c=ROTATE(c,10); }
lib/libmd/sha_locl.h
179
(a)=((ROTATE(l,8)&0x00FF00FF)|(ROTATE(l,24)&0xFF00FF00)); \
lib/libmd/sha_locl.h
187
(a)=ROTATE(l,16L); \
lib/libmd/sha_locl.h
212
X[(i)&0x0f]=(a)=ROTATE((a),1);
lib/libmd/sha_locl.h
216
(f)=xa[i]+(e)+K_00_19+ROTATE((a),5)+F_00_19((b),(c),(d)); \
lib/libmd/sha_locl.h
217
(b)=ROTATE((b),30);
lib/libmd/sha_locl.h
221
(f)+=(e)+K_00_19+ROTATE((a),5)+F_00_19((b),(c),(d)); \
lib/libmd/sha_locl.h
222
(b)=ROTATE((b),30);
lib/libmd/sha_locl.h
226
(f)+=(e)+K_20_39+ROTATE((a),5)+F_20_39((b),(c),(d)); \
lib/libmd/sha_locl.h
227
(b)=ROTATE((b),30);
lib/libmd/sha_locl.h
231
(f)+=(e)+K_20_39+ROTATE((a),5)+F_20_39((b),(c),(d)); \
lib/libmd/sha_locl.h
232
(b)=ROTATE((b),30);
lib/libmd/sha_locl.h
236
(f)+=(e)+K_40_59+ROTATE((a),5)+F_40_59((b),(c),(d)); \
lib/libmd/sha_locl.h
237
(b)=ROTATE((b),30);
lib/libmd/sha_locl.h
241
(f)=X[(i)&0x0f]+(e)+K_60_79+ROTATE((a),5)+F_60_79((b),(c),(d)); \
lib/libmd/sha_locl.h
242
(b)=ROTATE((b),30);
sys/crypto/chacha20/chacha.c
48
a = PLUS(a,b); d = ROTATE(XOR(d,a),16); \
sys/crypto/chacha20/chacha.c
49
c = PLUS(c,d); b = ROTATE(XOR(b,c),12); \
sys/crypto/chacha20/chacha.c
50
a = PLUS(a,b); d = ROTATE(XOR(d,a), 8); \
sys/crypto/chacha20/chacha.c
51
c = PLUS(c,d); b = ROTATE(XOR(b,c), 7);
sys/crypto/des/des_enc.c
156
l=ROTATE(l,3)&0xffffffffL;
sys/crypto/des/des_enc.c
157
r=ROTATE(r,3)&0xffffffffL;
sys/crypto/des/des_enc.c
186
r=ROTATE(r,29)&0xffffffffL;
sys/crypto/des/des_enc.c
187
l=ROTATE(l,29)&0xffffffffL;
sys/crypto/des/des_enc.c
251
data[0]=ROTATE(l,3)&0xffffffffL;
sys/crypto/des/des_enc.c
252
data[1]=ROTATE(r,3)&0xffffffffL;
sys/crypto/des/des_enc.c
90
r=ROTATE(r,29)&0xffffffffL;
sys/crypto/des/des_enc.c
91
l=ROTATE(l,29)&0xffffffffL;
sys/crypto/des/des_locl.h
150
t=ROTATE(t,4); \
sys/crypto/des/des_locl.h
178
t=ROTATE(t,4); \
sys/crypto/des/des_locl.h
213
t=ROTATE(t,4); \
sys/crypto/des/des_locl.h
232
t=ROTATE(t,6); \
sys/crypto/des/des_locl.h
261
t=ROTATE(t,6); \
sys/crypto/des/des_locl.h
290
t=ROTATE(t,4); \
sys/crypto/des/des_setkey.c
218
*(k++)=ROTATE(t2,30)&0xffffffffL;
sys/crypto/des/des_setkey.c
221
*(k++)=ROTATE(t2,26)&0xffffffffL;
usr.bin/caesar/caesar.c
121
putchar(ROTATE(ch, winner));
usr.bin/caesar/caesar.c
143
putchar(ROTATE(ch, rot));