Home
last modified time | relevance | path

Searched refs:ROTR (Results 1 – 1 of 1) sorted by relevance

/vim-8.2.3635/src/
H A Dsha256.c83 #define ROTR(x, n) (SHR(x, n) | (x << (32 - n))) in sha256_process() macro
85 #define S0(x) (ROTR(x, 7) ^ ROTR(x, 18) ^ SHR(x, 3)) in sha256_process()
86 #define S1(x) (ROTR(x, 17) ^ ROTR(x, 19) ^ SHR(x, 10)) in sha256_process()
88 #define S2(x) (ROTR(x, 2) ^ ROTR(x, 13) ^ ROTR(x, 22)) in sha256_process()
89 #define S3(x) (ROTR(x, 6) ^ ROTR(x, 11) ^ ROTR(x, 25)) in sha256_process()