Searched refs:Rot32 (Results 1 – 1 of 1) sorted by relevance
/titanic_44/usr/src/grub/grub-0.97/stage2/ |
H A D | zfs_sha256.c | 46 #define Rot32(x, s) (((x) >> s) | ((x) << (32 - s))) macro 47 #define SIGMA0(x) (Rot32(x, 2) ^ Rot32(x, 13) ^ Rot32(x, 22)) 48 #define SIGMA1(x) (Rot32(x, 6) ^ Rot32(x, 11) ^ Rot32(x, 25)) 49 #define sigma0(x) (Rot32(x, 7) ^ Rot32(x, 18) ^ ((x) >> 3)) 50 #define sigma1(x) (Rot32(x, 17) ^ Rot32(x, 19) ^ ((x) >> 10))
|