HomeSort by relevance Sort by last modified time
    Searched refs:CYCLIC (Results 1 - 6 of 6) sorted by null

  /external/syslinux/com32/libutil/
sha256crypt.c 101 #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 (x, 19) ^ (x >> 10)
    [all...]
sha512crypt.c 132 #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 (x, 61) ^ (x >> 6)
    [all...]
  /external/elfutils/lib/
sha1.c 200 /* It is unfortunate that C does not provide an operator for cyclic
202 #define CYCLIC(w, s) (((w) << s) | ((w) >> (32 - s)))
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); \
md5.c 326 CYCLIC (a, s); \
332 cyclic rotation. Hope the C compiler is smart enough. */
333 #define CYCLIC(w, s) (w = (w << s) | (w >> (32 - s)))
367 CYCLIC (a, s); \
  /external/libvncserver/common/
md5.c 340 CYCLIC (a, s); \
346 cyclic rotation. Hope the C compiler is smart enough. */
347 #define CYCLIC(w, s) (w = (w << s) | (w >> (32 - s)))
381 CYCLIC (a, s); \
  /toolchain/binutils/binutils-2.27/libiberty/
md5.c 320 CYCLIC (a, s); \
326 cyclic rotation. Hope the C compiler is smart enough. */
327 #define CYCLIC(w, s) (w = (w << s) | (w >> (32 - s)))
361 CYCLIC (a, s); \

Completed in 326 milliseconds