Symbol: ROTR
usr/src/boot/sys/cddl/boot/zfs/sha256.c
52
#define BIGSIGMA0_256(x) (ROTR(x, 2) ^ ROTR(x, 13) ^ ROTR(x, 22))
usr/src/boot/sys/cddl/boot/zfs/sha256.c
53
#define BIGSIGMA1_256(x) (ROTR(x, 6) ^ ROTR(x, 11) ^ ROTR(x, 25))
usr/src/boot/sys/cddl/boot/zfs/sha256.c
54
#define SIGMA0_256(x) (ROTR(x, 7) ^ ROTR(x, 18) ^ ((x) >> 3))
usr/src/boot/sys/cddl/boot/zfs/sha256.c
55
#define SIGMA1_256(x) (ROTR(x, 17) ^ ROTR(x, 19) ^ ((x) >> 10))
usr/src/boot/sys/cddl/boot/zfs/sha256.c
58
#define BIGSIGMA0_512(x) (ROTR((x), 28) ^ ROTR((x), 34) ^ ROTR((x), 39))
usr/src/boot/sys/cddl/boot/zfs/sha256.c
59
#define BIGSIGMA1_512(x) (ROTR((x), 14) ^ ROTR((x), 18) ^ ROTR((x), 41))
usr/src/boot/sys/cddl/boot/zfs/sha256.c
60
#define SIGMA0_512(x) (ROTR((x), 1) ^ ROTR((x), 8) ^ ((x) >> 7))
usr/src/boot/sys/cddl/boot/zfs/sha256.c
61
#define SIGMA1_512(x) (ROTR((x), 19) ^ ROTR((x), 61) ^ ((x) >> 6))
usr/src/common/crypto/sha2/sha2.c
103
#define BIGSIGMA0_256(x) (ROTR((x), 2) ^ ROTR((x), 13) ^ ROTR((x), 22))
usr/src/common/crypto/sha2/sha2.c
104
#define BIGSIGMA1_256(x) (ROTR((x), 6) ^ ROTR((x), 11) ^ ROTR((x), 25))
usr/src/common/crypto/sha2/sha2.c
105
#define SIGMA0_256(x) (ROTR((x), 7) ^ ROTR((x), 18) ^ SHR((x), 3))
usr/src/common/crypto/sha2/sha2.c
106
#define SIGMA1_256(x) (ROTR((x), 17) ^ ROTR((x), 19) ^ SHR((x), 10))
usr/src/common/crypto/sha2/sha2.c
115
#define BIGSIGMA0(x) (ROTR((x), 28) ^ ROTR((x), 34) ^ ROTR((x), 39))
usr/src/common/crypto/sha2/sha2.c
116
#define BIGSIGMA1(x) (ROTR((x), 14) ^ ROTR((x), 18) ^ ROTR((x), 41))
usr/src/common/crypto/sha2/sha2.c
117
#define SIGMA0(x) (ROTR((x), 1) ^ ROTR((x), 8) ^ SHR((x), 7))
usr/src/common/crypto/sha2/sha2.c
118
#define SIGMA1(x) (ROTR((x), 19) ^ ROTR((x), 61) ^ SHR((x), 6))
usr/src/grub/grub-0.97/stage2/zfs_sha256.c
51
#define BIGSIGMA0_256(x) (ROTR(x, 2) ^ ROTR(x, 13) ^ ROTR(x, 22))
usr/src/grub/grub-0.97/stage2/zfs_sha256.c
52
#define BIGSIGMA1_256(x) (ROTR(x, 6) ^ ROTR(x, 11) ^ ROTR(x, 25))
usr/src/grub/grub-0.97/stage2/zfs_sha256.c
53
#define SIGMA0_256(x) (ROTR(x, 7) ^ ROTR(x, 18) ^ ((x) >> 3))
usr/src/grub/grub-0.97/stage2/zfs_sha256.c
54
#define SIGMA1_256(x) (ROTR(x, 17) ^ ROTR(x, 19) ^ ((x) >> 10))
usr/src/grub/grub-0.97/stage2/zfs_sha256.c
57
#define BIGSIGMA0_512(x) (ROTR((x), 28) ^ ROTR((x), 34) ^ ROTR((x), 39))
usr/src/grub/grub-0.97/stage2/zfs_sha256.c
58
#define BIGSIGMA1_512(x) (ROTR((x), 14) ^ ROTR((x), 18) ^ ROTR((x), 41))
usr/src/grub/grub-0.97/stage2/zfs_sha256.c
59
#define SIGMA0_512(x) (ROTR((x), 1) ^ ROTR((x), 8) ^ ((x) >> 7))
usr/src/grub/grub-0.97/stage2/zfs_sha256.c
60
#define SIGMA1_512(x) (ROTR((x), 19) ^ ROTR((x), 61) ^ ((x) >> 6))