OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CYCLIC
(Results
1 - 2
of
2
) sorted by null
/external/elfutils/lib/
sha1.c
203
/* It is unfortunate that C does not provide an operator for
cyclic
205
#define
CYCLIC
(w, s) (((w) << s) | ((w) >> (32 - s)))
261
e =
CYCLIC
(a, 5) + FF (b, c, d) + e + W (i) + K0; \
263
b =
CYCLIC
(b, 30); \
294
W (i) =
CYCLIC
(W (i - 3) ^ W (i - 8) ^ W (i - 14) ^ W (i - 16), 1);\
295
e =
CYCLIC
(a, 5) + f (b, c, d) + e + W (i) + K; \
296
b =
CYCLIC
(b, 30); \
md5.c
334
CYCLIC
(a, s); \
340
cyclic
rotation. Hope the C compiler is smart enough. */
341
#define
CYCLIC
(w, s) (w = (w << s) | (w >> (32 - s)))
375
CYCLIC
(a, s); \
Completed in 185 milliseconds