Lines Matching defs:ROTR
45 #define ROTR(x,n) (((x)>>(n)) | ((x) << (64 - (n))))
47 #define Sigma0(x) (ROTR(x,28) ^ ROTR(x,34) ^ ROTR(x,39))
48 #define Sigma1(x) (ROTR(x,14) ^ ROTR(x,18) ^ ROTR(x,41))
49 #define sigma0(x) (ROTR(x,1) ^ ROTR(x,8) ^ ((x)>>7))
50 #define sigma1(x) (ROTR(x,19) ^ ROTR(x,61) ^ ((x)>>6))