Lines Matching refs:ROTR
389 # define ROTR(a,n) ({ SHA_LONG64 ret; \
419 # define ROTR(a,n) ({ SHA_LONG64 ret; \
424 # define ROTR(a,n) ({ SHA_LONG64 ret; \
439 # define ROTR(a,n) _rotr64((a),n)
472 # ifndef ROTR
473 # define ROTR(x,s) (((x)>>s) | (x)<<(64-s))
475 # define Sigma0(x) (ROTR((x),28) ^ ROTR((x),34) ^ ROTR((x),39))
476 # define Sigma1(x) (ROTR((x),14) ^ ROTR((x),18) ^ ROTR((x),41))
477 # define sigma0(x) (ROTR((x),1) ^ ROTR((x),8) ^ ((x)>>7))
478 # define sigma1(x) (ROTR((x),19) ^ ROTR((x),61) ^ ((x)>>6))