Searched refs:ror32 (Results 1 – 9 of 9) sorted by relevance
/linux-2.6.39/crypto/ |
D | aes_generic.c | 1136 (y) ^= ror32(u ^ t, 8) ^ \ 1137 ror32(v ^ t, 16) ^ \ 1138 ror32(t, 24); \ 1148 t = ror32(t, 8); \ 1161 t = ror32(t, 8); \ 1178 t = ror32(t, 8); \
|
D | sha256_generic.c | 38 #define e0(x) (ror32(x, 2) ^ ror32(x,13) ^ ror32(x,22)) 39 #define e1(x) (ror32(x, 6) ^ ror32(x,11) ^ ror32(x,25)) 40 #define s0(x) (ror32(x, 7) ^ ror32(x,18) ^ (x >> 3)) 41 #define s1(x) (ror32(x,17) ^ ror32(x,19) ^ (x >> 10))
|
D | twofish_generic.c | 71 (c) = ror32((c), 1); \ 78 (d) = ror32((d), 1); \
|
D | michael_mic.c | 45 r ^= ror32(l, 2); \
|
D | serpent.c | 62 x3 ^= k[4*i+3]; x0=ror32(x0,5); x2=ror32(x2,22);\ 64 x4 <<= 7; x0 ^= x1; x1=ror32(x1,1); \ 65 x2 ^= x4; x3=ror32(x3,7); x4 = x0 << 3; \ 66 x1 ^= x0; x3 ^= x4; x0=ror32(x0,13);\ 67 x1 ^= x2; x3 ^= x2; x2=ror32(x2,3);
|
D | camellia.c | 374 yr = ror32(yr, 8); \ 883 yr ^= ror32(il, 8) ^ ir; \
|
D | des_generic.c | 26 #define ROR(x, r) ((x) = ror32((x), (r)))
|
/linux-2.6.39/net/mac80211/ |
D | michael.c | 26 mctx->r ^= ror32(mctx->l, 2); in michael_block()
|
/linux-2.6.39/include/linux/ |
D | bitops.h | 67 static inline __u32 ror32(__u32 word, unsigned int shift) in ror32() function
|