Searched refs:CYCLIC (Results 1 – 2 of 2) sorted by relevance
/php-src/ext/standard/ |
H A D | crypt_sha256.c | 129 #define S0(x) (CYCLIC (x, 2) ^ CYCLIC (x, 13) ^ CYCLIC (x, 22)) in sha256_process_block() 130 #define S1(x) (CYCLIC (x, 6) ^ CYCLIC (x, 11) ^ CYCLIC (x, 25)) in sha256_process_block() 131 #define R0(x) (CYCLIC (x, 7) ^ CYCLIC (x, 18) ^ (x >> 3)) in sha256_process_block() 132 #define R1(x) (CYCLIC (x, 17) ^ CYCLIC (x, 19) ^ (x >> 10)) in sha256_process_block() 136 #define CYCLIC(w, s) ((w >> s) | (w << (32 - s))) in sha256_process_block() macro
|
H A D | crypt_sha512.c | 158 #define S0(x) (CYCLIC (x, 28) ^ CYCLIC (x, 34) ^ CYCLIC (x, 39)) in sha512_process_block() 159 #define S1(x) (CYCLIC (x, 14) ^ CYCLIC (x, 18) ^ CYCLIC (x, 41)) in sha512_process_block() 160 #define R0(x) (CYCLIC (x, 1) ^ CYCLIC (x, 8) ^ (x >> 7)) in sha512_process_block() 161 #define R1(x) (CYCLIC (x, 19) ^ CYCLIC (x, 61) ^ (x >> 6)) in sha512_process_block() 165 #define CYCLIC(w, s) ((w >> s) | (w << (64 - s))) in sha512_process_block() macro
|
Completed in 7 milliseconds