Searched refs:Rot32 (Results 1 – 1 of 1) sorted by relevance
/xen/tools/libfsimage/zfs/ |
A D | zfs_sha256.c | 45 #define Rot32(x, s) (((x) >> s) | ((x) << (32 - s))) macro 46 #define SIGMA0(x) (Rot32(x, 2) ^ Rot32(x, 13) ^ Rot32(x, 22)) 47 #define SIGMA1(x) (Rot32(x, 6) ^ Rot32(x, 11) ^ Rot32(x, 25)) 48 #define sigma0(x) (Rot32(x, 7) ^ Rot32(x, 18) ^ ((x) >> 3)) 49 #define sigma1(x) (Rot32(x, 17) ^ Rot32(x, 19) ^ ((x) >> 10))
|
Completed in 2 milliseconds