Searched refs:RORc (Results 1 - 15 of 15) sorted by relevance

/external/dropbear/libtomcrypt/src/ciphers/
H A Dnoekeon.c42 temp = a^c; temp = temp ^ ROLc(temp, 8) ^ RORc(temp, 8); \
44 temp = b^d; temp = temp ^ ROLc(temp, 8) ^ RORc(temp, 8); \
48 temp = a^c; temp = temp ^ ROLc(temp, 8) ^ RORc(temp, 8); \
50 temp = b^d; temp = temp ^ ROLc(temp, 8) ^ RORc(temp, 8); \
65 a = RORc(a, 1); c = RORc(c, 5); d = RORc(d, 2);
H A Ddes.c1453 work = RORc(right, 4) ^ *keys++;
1464 work = RORc(leftt, 4) ^ *keys++;
1477 right = RORc(right, 1);
1481 leftt = RORc(leftt, 1);
/external/dropbear/libtomcrypt/src/headers/
H A Dtomcrypt_macros.h242 #define RORc(x,n) _lrotr(x,n) macro
273 static inline unsigned RORc(unsigned word, const int i) function
284 #define RORc ROR macro
316 static inline unsigned RORc(unsigned word, const int i) function
327 #define RORc ROR macro
338 #define RORc(x, y) ( ((((unsigned long)(x)&0xFFFFFFFFUL)>>(unsigned long)((y)&31)) | ((unsigned long)(x)<<(unsigned long)(32-((y)&31)))) & 0xFFFFFFFFUL) macro
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dsha256-internal.c65 #define RORc(x, y) \ macro
70 #define S(x, n) RORc((x), (n))
H A Ddes-internal.c42 #define RORc(x, y) \ macro
350 work = RORc(right, 4) ^ *keys++;
361 work = RORc(leftt, 4) ^ *keys++;
373 right = RORc(right, 1);
377 leftt = RORc(leftt, 1);
/external/wpa_supplicant_8/src/crypto/
H A Dsha256-internal.c65 #define RORc(x, y) \ macro
70 #define S(x, n) RORc((x), (n))
H A Ddes-internal.c42 #define RORc(x, y) \ macro
350 work = RORc(right, 4) ^ *keys++;
361 work = RORc(leftt, 4) ^ *keys++;
373 right = RORc(right, 1);
377 leftt = RORc(leftt, 1);
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dsha256-internal.c65 #define RORc(x, y) \ macro
70 #define S(x, n) RORc((x), (n))
H A Ddes-internal.c42 #define RORc(x, y) \ macro
350 work = RORc(right, 4) ^ *keys++;
361 work = RORc(leftt, 4) ^ *keys++;
373 right = RORc(right, 1);
377 leftt = RORc(leftt, 1);
/external/dropbear/libtomcrypt/src/ciphers/twofish/
H A Dtwofish.c506 c = RORc(c ^ (t1 + k[0]), 1);
511 a = RORc(a ^ (t1 + k[2]), 1);
583 b = RORc(b ^ (t2 + t1 + k[3]), 1);
588 d = RORc(d ^ (t2 + t1 + k[1]), 1);
/external/dropbear/libtomcrypt/src/prngs/
H A Dsober128.c91 t = RORc(t, 8); \
/external/dropbear/libtomcrypt/src/ciphers/aes/
H A Daes_tab.c307 #define Te1(x) RORc(TE0[x], 8)
308 #define Te2(x) RORc(TE0[x], 16)
309 #define Te3(x) RORc(TE0[x], 24)
312 #define Td1(x) RORc(TD0[x], 8)
313 #define Td2(x) RORc(TD0[x], 16)
314 #define Td3(x) RORc(TD0[x], 24)
H A Daes.c204 rk[12] = rk[ 4] ^ setup_mix(RORc(temp, 8));
/external/dropbear/libtomcrypt/src/hashes/sha2/
H A Dsha256.c60 #define S(x, n) RORc((x),(n))
/external/dropbear/libtomcrypt/
H A Dcrypt.tex297 \index{ROL} \index{ROR} \index{ROL64} \index{ROR64} \index{ROLc} \index{RORc} \index{ROL64c} \index{ROR64c}
305 \hline RORc(x, y) & {\bf unsigned long} x, {\bf const unsigned long} y & $x >> y, 0 \le y \le 31$ \\

Completed in 215 milliseconds