Searched refs:CYCLIC (Results 1 – 1 of 1) sorted by relevance
/systemd-251/src/fundamental/ |
D | sha256.c | 241 #define S0(x) (CYCLIC (x, 2) ^ CYCLIC (x, 13) ^ CYCLIC (x, 22)) in sha256_process_block() 242 #define S1(x) (CYCLIC (x, 6) ^ CYCLIC (x, 11) ^ CYCLIC (x, 25)) in sha256_process_block() 243 #define R0(x) (CYCLIC (x, 7) ^ CYCLIC (x, 18) ^ (x >> 3)) in sha256_process_block() 244 #define R1(x) (CYCLIC (x, 17) ^ CYCLIC (x, 19) ^ (x >> 10)) in sha256_process_block() 248 #define CYCLIC(w, s) ((w >> s) | (w << (32 - s))) in sha256_process_block() macro
|