Lines Matching full:rotr
317 # define ROTR(a,n) ({ unsigned long ret; \
347 # define ROTR(a,n) ({ unsigned long ret; \
354 # define ROTR(a,n) _rotr64((a),n)
389 #ifndef ROTR
390 #define ROTR(x,s) (((x)>>s) | (x)<<(64-s))
393 #define Sigma0(x) (ROTR((x),28) ^ ROTR((x),34) ^ ROTR((x),39))
394 #define Sigma1(x) (ROTR((x),14) ^ ROTR((x),18) ^ ROTR((x),41))
395 #define sigma0(x) (ROTR((x),1) ^ ROTR((x),8) ^ ((x)>>7))
396 #define sigma1(x) (ROTR((x),19) ^ ROTR((x),61) ^ ((x)>>6))