Lines Matching refs:ROTR
320 #define ROTR(a, n) \ macro
327 #define ROTR(a, n) \ macro
334 #define ROTR(a, n) \ macro
343 #define ROTR(a, n) _rotr64((a), n) macro
346 #ifndef ROTR
347 #define ROTR(x, s) (((x) >> s) | (x) << (64 - s)) macro
356 #define Sigma0(x) (ROTR((x), 28) ^ ROTR((x), 34) ^ ROTR((x), 39))
357 #define Sigma1(x) (ROTR((x), 14) ^ ROTR((x), 18) ^ ROTR((x), 41))
358 #define sigma0(x) (ROTR((x), 1) ^ ROTR((x), 8) ^ ((x) >> 7))
359 #define sigma1(x) (ROTR((x), 19) ^ ROTR((x), 61) ^ ((x) >> 6))
527 #undef ROTR