Searched refs:CYCLIC (Results 1 - 5 of 5) sorted by relevance

/external/syslinux/com32/libutil/
H A Dsha256crypt.c101 #define S0(x) (CYCLIC (x, 2) ^ CYCLIC (x, 13) ^ CYCLIC (x, 22))
102 #define S1(x) (CYCLIC (x, 6) ^ CYCLIC (x, 11) ^ CYCLIC (x, 25))
103 #define R0(x) (CYCLIC (x, 7) ^ CYCLIC (x, 18) ^ (x >> 3))
104 #define R1(x) (CYCLIC (x, 17) ^ CYCLIC (
108 #define CYCLIC macro
[all...]
H A Dsha512crypt.c132 #define S0(x) (CYCLIC (x, 28) ^ CYCLIC (x, 34) ^ CYCLIC (x, 39))
133 #define S1(x) (CYCLIC (x, 14) ^ CYCLIC (x, 18) ^ CYCLIC (x, 41))
134 #define R0(x) (CYCLIC (x, 1) ^ CYCLIC (x, 8) ^ (x >> 7))
135 #define R1(x) (CYCLIC (x, 19) ^ CYCLIC (
139 #define CYCLIC macro
[all...]
/external/elfutils/lib/
H A Dsha1.c202 #define CYCLIC(w, s) (((w) << s) | ((w) >> (32 - s))) macro
255 e = CYCLIC (a, 5) + FF (b, c, d) + e + W (i) + K0; \
257 b = CYCLIC (b, 30); \
288 W (i) = CYCLIC (W (i - 3) ^ W (i - 8) ^ W (i - 14) ^ W (i - 16), 1);\
289 e = CYCLIC (a, 5) + f (b, c, d) + e + W (i) + K; \
290 b = CYCLIC (b, 30); \
H A Dmd5.c326 CYCLIC (a, s); \
333 #define CYCLIC(w, s) (w = (w << s) | (w >> (32 - s))) macro
367 CYCLIC (a, s); \
/external/libvncserver/common/
H A Dmd5.c340 CYCLIC (a, s); \
347 #define CYCLIC(w, s) (w = (w << s) | (w >> (32 - s))) macro
381 CYCLIC (a, s); \

Completed in 970 milliseconds