Home
last modified time | relevance | path

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

/PHP-5.5/ext/standard/
H A Dcrypt_sha256.c150 #define S0(x) (CYCLIC (x, 2) ^ CYCLIC (x, 13) ^ CYCLIC (x, 22)) in sha256_process_block()
151 #define S1(x) (CYCLIC (x, 6) ^ CYCLIC (x, 11) ^ CYCLIC (x, 25)) in sha256_process_block()
152 #define R0(x) (CYCLIC (x, 7) ^ CYCLIC (x, 18) ^ (x >> 3)) in sha256_process_block()
153 #define R1(x) (CYCLIC (x, 17) ^ CYCLIC (x, 19) ^ (x >> 10)) in sha256_process_block()
157 #define CYCLIC(w, s) ((w >> s) | (w << (32 - s))) in sha256_process_block() macro
H A Dcrypt_sha512.c175 #define S0(x) (CYCLIC (x, 28) ^ CYCLIC (x, 34) ^ CYCLIC (x, 39)) in sha512_process_block()
176 #define S1(x) (CYCLIC (x, 14) ^ CYCLIC (x, 18) ^ CYCLIC (x, 41)) in sha512_process_block()
177 #define R0(x) (CYCLIC (x, 1) ^ CYCLIC (x, 8) ^ (x >> 7)) in sha512_process_block()
178 #define R1(x) (CYCLIC (x, 19) ^ CYCLIC (x, 61) ^ (x >> 6)) in sha512_process_block()
182 #define CYCLIC(w, s) ((w >> s) | (w << (64 - s))) in sha512_process_block() macro

Completed in 8 milliseconds