Symbol: ROTATE
crypto/krb5/src/lib/crypto/builtin/md4/md4.c
160
#define ROTATE { krb5_ui_4 temp; temp = d, d = c, c = b, b = a, a = temp; }
crypto/krb5/src/lib/crypto/builtin/md5/md5.c
199
#define ROTATE { krb5_ui_4 temp; temp = d, d = c, c = b, b = a, a = temp; }
crypto/openssh/chacha.c
40
#define ROTATE(v,c) (ROTL32(v,c))
crypto/openssh/openbsd-compat/chacha_private.h
42
#define ROTATE(v,c) (ROTL32(v,c))
crypto/openssl/crypto/aes/aes_x86core.c
90
#undef ROTATE
crypto/openssl/crypto/aes/aes_x86core.c
92
#define ROTATE(a, n) _lrotl(a, n)
crypto/openssl/crypto/aes/aes_x86core.c
94
#define ROTATE(a, n) _rotl(a, n)
crypto/openssl/crypto/aes/aes_x86core.c
97
#define ROTATE(a, n) ({ \
crypto/openssl/crypto/chacha/chacha_enc.c
25
#define ROTATE(v, n) (((v) << (n)) | ((v) >> (32 - (n))))
crypto/openssl/crypto/chacha/chacha_enc.c
31
#undef ROTATE
crypto/openssl/crypto/chacha/chacha_enc.c
32
#define ROTATE(x, n) ({ u32 ret; \
crypto/openssl/crypto/chacha/chacha_enc.c
38
#undef ROTATE
crypto/openssl/crypto/chacha/chacha_enc.c
39
#define ROTATE(x, n) ({ u32 ret; \
crypto/openssl/crypto/des/des_local.h
103
#define ROTATE(a, n) (_lrotr(a, n))
crypto/openssl/crypto/des/des_local.h
105
#define ROTATE(a, n) (_rotr(a, n))
crypto/openssl/crypto/des/des_local.h
108
#define ROTATE(a, n) ({ \
crypto/openssl/crypto/des/des_local.h
118
#define ROTATE(x, n) ({ register unsigned int ret; \
crypto/openssl/crypto/des/des_local.h
124
#define ROTATE(x, n) ({ register unsigned int ret; \
crypto/openssl/crypto/des/des_local.h
132
#define ROTATE(a, n) (((a) >> (n)) + ((a) << (32 - (n))))
crypto/openssl/crypto/whrlpool/wp_block.c
106
#undef ROTATE
crypto/openssl/crypto/whrlpool/wp_block.c
112
#define ROTATE(a, n) _rotl64((a), n)
crypto/openssl/crypto/whrlpool/wp_block.c
117
#define ROTATE(a, n) ({ u64 ret; asm ("rolq %1,%0" \
crypto/openssl/crypto/whrlpool/wp_block.c
127
#define ROTATE(a, n) ({ u64 ret; asm ("rorq %1,%0" \
crypto/openssl/crypto/whrlpool/wp_block.c
132
#define ROTATE(a, n) ({ u64 ret; asm ("shrp %0=%1,%1,%2" \
crypto/openssl/crypto/whrlpool/wp_block.c
135
#define ROTATE(a, n) ({ u64 ret; asm ("shrp %0=%1,%1,%2" \
crypto/openssl/crypto/whrlpool/wp_block.c
145
#define ROTATE(i, n) ((i) << (n) ^ (i) >> (64 - n))
crypto/openssl/crypto/whrlpool/wp_block.c
147
#define ROTATE(i, n) ((i) >> (n) ^ (i) << (64 - n))
crypto/openssl/include/crypto/md32_common.h
100
#define ROTATE(a, n) (((a) << (n)) | (((a) & 0xffffffff) >> (32 - (n))))
crypto/openssl/include/crypto/md32_common.h
106
#undef ROTATE
crypto/openssl/include/crypto/md32_common.h
107
#define ROTATE(x, n) ({ MD32_REG_T ret; \
crypto/openssl/include/crypto/md32_common.h
113
#undef ROTATE
crypto/openssl/include/crypto/md32_common.h
114
#define ROTATE(x, n) ({ MD32_REG_T ret; \
lib/libmd/rmd_locl.h
153
#undef ROTATE
lib/libmd/rmd_locl.h
155
#define ROTATE(a,n) _lrotl(a,n)
lib/libmd/rmd_locl.h
157
#define ROTATE(a,n) (((a)<<(n))|(((a)&0xffffffff)>>(32-(n))))
lib/libmd/sha_locl.h
166
#undef ROTATE
lib/libmd/sha_locl.h
168
#define ROTATE(a,n) _lrotl(a,n)
lib/libmd/sha_locl.h
170
#define ROTATE(a,n) (((a)<<(n))|(((a)&0xffffffff)>>(32-(n))))
sys/crypto/chacha20/chacha.c
42
#define ROTATE(v,c) (ROTL32(v,c))
sys/crypto/des/des_locl.h
123
#define ROTATE(a,n) (((a)>>(n))+((a)<<(32-(n))))
usr.bin/caesar/caesar.c
47
#define ROTATE(ch, perm) \