Lines Matching defs:ROTR
358 #define ROTR(x,n) (SHR(x,n) | (x << (32 - n)))
360 #define S0(x) (ROTR(x, 7) ^ ROTR(x,18) ^ SHR(x, 3))
361 #define S1(x) (ROTR(x,17) ^ ROTR(x,19) ^ SHR(x,10))
363 #define S2(x) (ROTR(x, 2) ^ ROTR(x,13) ^ ROTR(x,22))
364 #define S3(x) (ROTR(x, 6) ^ ROTR(x,11) ^ ROTR(x,25))
473 #undef ROTR