Searched refs:CYCLIC (Results 1 – 5 of 5) sorted by relevance
/external/syslinux/com32/libutil/ |
D | sha256crypt.c | 101 #define S0(x) (CYCLIC (x, 2) ^ CYCLIC (x, 13) ^ CYCLIC (x, 22)) in sha256_process_block() 102 #define S1(x) (CYCLIC (x, 6) ^ CYCLIC (x, 11) ^ CYCLIC (x, 25)) in sha256_process_block() 103 #define R0(x) (CYCLIC (x, 7) ^ CYCLIC (x, 18) ^ (x >> 3)) in sha256_process_block() 104 #define R1(x) (CYCLIC (x, 17) ^ CYCLIC (x, 19) ^ (x >> 10)) in sha256_process_block() 108 #define CYCLIC(w, s) ((w >> s) | (w << (32 - s))) in sha256_process_block() macro
|
D | sha512crypt.c | 132 #define S0(x) (CYCLIC (x, 28) ^ CYCLIC (x, 34) ^ CYCLIC (x, 39)) in sha512_process_block() 133 #define S1(x) (CYCLIC (x, 14) ^ CYCLIC (x, 18) ^ CYCLIC (x, 41)) in sha512_process_block() 134 #define R0(x) (CYCLIC (x, 1) ^ CYCLIC (x, 8) ^ (x >> 7)) in sha512_process_block() 135 #define R1(x) (CYCLIC (x, 19) ^ CYCLIC (x, 61) ^ (x >> 6)) in sha512_process_block() 139 #define CYCLIC(w, s) ((w >> s) | (w << (64 - s))) in sha512_process_block() macro
|
/external/elfutils/lib/ |
D | sha1.c | 202 #define CYCLIC(w, s) (((w) << s) | ((w) >> (32 - s))) macro 255 e = CYCLIC (a, 5) + FF (b, c, d) + e + W (i) + K0; \ in sha1_process_block() 257 b = CYCLIC (b, 30); \ in sha1_process_block() 288 W (i) = CYCLIC (W (i - 3) ^ W (i - 8) ^ W (i - 14) ^ W (i - 16), 1);\ in sha1_process_block() 289 e = CYCLIC (a, 5) + f (b, c, d) + e + W (i) + K; \ in sha1_process_block() 290 b = CYCLIC (b, 30); \ in sha1_process_block()
|
D | md5.c | 326 CYCLIC (a, s); \ in md5_process_block() 333 #define CYCLIC(w, s) (w = (w << s) | (w >> (32 - s))) in md5_process_block() macro 367 CYCLIC (a, s); \ in md5_process_block()
|
/external/libvncserver/common/ |
D | md5.c | 340 CYCLIC (a, s); \ 347 #define CYCLIC(w, s) (w = (w << s) | (w >> (32 - s))) macro 381 CYCLIC (a, s); \
|