Home
last modified time | relevance | path

Searched refs:ror32 (Results 1 – 14 of 14) sorted by relevance

/linux-4.19.296/lib/crypto/
Dblake2s-generic.c66 d = ror32(d ^ a, 16); \ in blake2s_compress_generic()
68 b = ror32(b ^ c, 12); \ in blake2s_compress_generic()
70 d = ror32(d ^ a, 8); \ in blake2s_compress_generic()
72 b = ror32(b ^ c, 7); \ in blake2s_compress_generic()
/linux-4.19.296/crypto/
Daes_generic.c1137 (y) ^= ror32(u ^ t, 8) ^ \
1138 ror32(v ^ t, 16) ^ \
1139 ror32(t, 24); \
1149 t = ror32(t, 8); \
1162 t = ror32(t, 8); \
1179 t = ror32(t, 8); \
Dsha256_generic.c56 #define e0(x) (ror32(x, 2) ^ ror32(x,13) ^ ror32(x,22))
57 #define e1(x) (ror32(x, 6) ^ ror32(x,11) ^ ror32(x,25))
58 #define s0(x) (ror32(x, 7) ^ ror32(x,18) ^ (x >> 3))
59 #define s1(x) (ror32(x,17) ^ ror32(x,19) ^ (x >> 10))
Daes_ti.c119 u32 y = mul_by_x(x) ^ ror32(x, 16); in mix_columns()
121 return y ^ ror32(x ^ y, 8); in mix_columns()
143 return mix_columns(x ^ y ^ ror32(y, 16)); in inv_mix_columns()
190 rko[0] = ror32(subw(rki[kwords - 1]), 8) ^ rc ^ rki[0]; in aesti_expand_key()
Dtwofish_generic.c70 (c) = ror32((c), 1); \
77 (d) = ror32((d), 1); \
Dmichael_mic.c45 r ^= ror32(l, 2); \
Dserpent_generic.c64 x3 ^= k[4*i+3]; x0 = ror32(x0, 5); x2 = ror32(x2, 22);\
66 x4 <<= 7; x0 ^= x1; x1 = ror32(x1, 1); \
67 x2 ^= x4; x3 = ror32(x3, 7); x4 = x0 << 3; \
68 x1 ^= x0; x3 ^= x4; x0 = ror32(x0, 13);\
69 x1 ^= x2; x3 ^= x2; x2 = ror32(x2, 3); \
Dcamellia_generic.c370 yr = ror32(yr, 8); \
859 yr ^= ror32(il, 8) ^ ir; \
Ddes_generic.c26 #define ROR(x, r) ((x) = ror32((x), (r)))
/linux-4.19.296/lib/
Dsha256.c33 #define e0(x) (ror32(x, 2) ^ ror32(x, 13) ^ ror32(x, 22))
34 #define e1(x) (ror32(x, 6) ^ ror32(x, 11) ^ ror32(x, 25))
35 #define s0(x) (ror32(x, 7) ^ ror32(x, 18) ^ (x >> 3))
36 #define s1(x) (ror32(x, 17) ^ ror32(x, 19) ^ (x >> 10))
Dsha1.c59 B = ror32(B, 2); \
/linux-4.19.296/include/linux/
Dbitops.h92 static inline __u32 ror32(__u32 word, unsigned int shift) in ror32() function
/linux-4.19.296/include/net/
Dchecksum.h94 sum = ror32(sum, 8); in csum_block_add()
/linux-4.19.296/drivers/irqchip/
Dirq-gic.c903 val |= ror32(active_mask, ror_val); in gic_migrate_target()