Lines Matching refs:ROTR
402 # define ROTR(a,n) ({ SHA_LONG64 ret; \
432 # define ROTR(a,n) ({ SHA_LONG64 ret; \
437 # define ROTR(a,n) ({ SHA_LONG64 ret; \
452 # define ROTR(a,n) _rotr64((a),n)
485 # ifndef ROTR
486 # define ROTR(x,s) (((x)>>s) | (x)<<(64-s))
488 # define Sigma0(x) (ROTR((x),28) ^ ROTR((x),34) ^ ROTR((x),39))
489 # define Sigma1(x) (ROTR((x),14) ^ ROTR((x),18) ^ ROTR((x),41))
490 # define sigma0(x) (ROTR((x),1) ^ ROTR((x),8) ^ ((x)>>7))
491 # define sigma1(x) (ROTR((x),19) ^ ROTR((x),61) ^ ((x)>>6))