Searched refs:Rot32 (Results 1 - 1 of 1) sorted by relevance

/u-boot/fs/zfs/
H A Dzfs_sha256.c51 #define Rot32(x, s) (((x) >> s) | ((x) << (32 - s))) macro
52 #define SIGMA0(x) (Rot32(x, 2) ^ Rot32(x, 13) ^ Rot32(x, 22))
53 #define SIGMA1(x) (Rot32(x, 6) ^ Rot32(x, 11) ^ Rot32(x, 25))
54 #define sigma0(x) (Rot32(x, 7) ^ Rot32(x, 18) ^ ((x) >> 3))
55 #define sigma1(x) (Rot32(
[all...]

Completed in 42 milliseconds