Home
last modified time | relevance | path

Searched refs:ror32 (Results 1 - 25 of 45) sorted by relevance

12

/kernel/linux/linux-6.6/lib/crypto/
H A Dsha256.c49 #define e0(x) (ror32(x, 2) ^ ror32(x, 13) ^ ror32(x, 22))
50 #define e1(x) (ror32(x, 6) ^ ror32(x, 11) ^ ror32(x, 25))
51 #define s0(x) (ror32(x, 7) ^ ror32(x, 18) ^ (x >> 3))
52 #define s1(x) (ror32(x, 17) ^ ror32(
[all...]
H A Dblake2s-generic.c69 d = ror32(d ^ a, 16); \ in blake2s_compress_generic()
71 b = ror32(b ^ c, 12); \ in blake2s_compress_generic()
73 d = ror32(d ^ a, 8); \ in blake2s_compress_generic()
75 b = ror32(b ^ c, 7); \ in blake2s_compress_generic()
H A Daes.c120 u32 y = mul_by_x(x) ^ ror32(x, 16); in mix_columns()
122 return y ^ ror32(x ^ y, 8); in mix_columns()
144 return mix_columns(x ^ y ^ ror32(y, 16)); in inv_mix_columns()
205 rko[0] = ror32(subw(rki[kwords - 1]), 8) ^ rc ^ rki[0]; in aes_expandkey()
H A Dsha1.c60 B = ror32(B, 2); \
/kernel/linux/linux-5.10/lib/crypto/
H A Dblake2s-generic.c70 d = ror32(d ^ a, 16); \ in blake2s_compress_generic()
72 b = ror32(b ^ c, 12); \ in blake2s_compress_generic()
74 d = ror32(d ^ a, 8); \ in blake2s_compress_generic()
76 b = ror32(b ^ c, 7); \ in blake2s_compress_generic()
H A Dsha256.c31 #define e0(x) (ror32(x, 2) ^ ror32(x, 13) ^ ror32(x, 22))
32 #define e1(x) (ror32(x, 6) ^ ror32(x, 11) ^ ror32(x, 25))
33 #define s0(x) (ror32(x, 7) ^ ror32(x, 18) ^ (x >> 3))
34 #define s1(x) (ror32(x, 17) ^ ror32(
[all...]
H A Daes.c120 u32 y = mul_by_x(x) ^ ror32(x, 16); in mix_columns()
122 return y ^ ror32(x ^ y, 8); in mix_columns()
144 return mix_columns(x ^ y ^ ror32(y, 16)); in inv_mix_columns()
205 rko[0] = ror32(subw(rki[kwords - 1]), 8) ^ rc ^ rki[0]; in aes_expandkey()
/kernel/linux/linux-5.10/fs/adfs/
H A Ddir_fplus.c89 dircheck = ror32(dircheck, 13) ^ le32_to_cpup(bp++); in adfs_fplus_checkbyte()
95 dircheck = ror32(dircheck, 13) ^ le32_to_cpu(t->bigdirendname); in adfs_fplus_checkbyte()
96 dircheck = ror32(dircheck, 13) ^ t->bigdirendmasseq; in adfs_fplus_checkbyte()
97 dircheck = ror32(dircheck, 13) ^ t->reserved[0]; in adfs_fplus_checkbyte()
98 dircheck = ror32(dircheck, 13) ^ t->reserved[1]; in adfs_fplus_checkbyte()
/kernel/linux/linux-6.6/fs/adfs/
H A Ddir_fplus.c89 dircheck = ror32(dircheck, 13) ^ le32_to_cpup(bp++); in adfs_fplus_checkbyte()
95 dircheck = ror32(dircheck, 13) ^ le32_to_cpu(t->bigdirendname); in adfs_fplus_checkbyte()
96 dircheck = ror32(dircheck, 13) ^ t->bigdirendmasseq; in adfs_fplus_checkbyte()
97 dircheck = ror32(dircheck, 13) ^ t->reserved[0]; in adfs_fplus_checkbyte()
98 dircheck = ror32(dircheck, 13) ^ t->reserved[1]; in adfs_fplus_checkbyte()
/kernel/linux/linux-5.10/drivers/leds/
H A Dleds-mlxreg.c85 nib = (ror32(data->mask, data->bit) == 0xf0) ? rol32(vset, data->bit) : in mlxreg_led_store_hw()
125 regval = (ror32(data->mask, data->bit) == 0xf0) ? ror32(regval, in mlxreg_led_get_hw()
126 data->bit) : ror32(regval, data->bit + 4); in mlxreg_led_get_hw()
/kernel/linux/linux-6.6/drivers/leds/
H A Dleds-mlxreg.c85 nib = (ror32(data->mask, data->bit) == 0xf0) ? rol32(vset, data->bit) : in mlxreg_led_store_hw()
125 regval = (ror32(data->mask, data->bit) == 0xf0) ? ror32(regval, in mlxreg_led_get_hw()
126 data->bit) : ror32(regval, data->bit + 4); in mlxreg_led_get_hw()
/kernel/linux/linux-5.10/crypto/
H A Dtwofish_generic.c57 (c) = ror32((c), 1); \
64 (d) = ror32((d), 1); \
H A Dmichael_mic.c42 r ^= ror32(l, 2); \
/kernel/linux/linux-6.6/crypto/
H A Dtwofish_generic.c57 (c) = ror32((c), 1); \
64 (d) = ror32((d), 1); \
H A Dmichael_mic.c42 r ^= ror32(l, 2); \
/kernel/linux/linux-5.10/net/mac80211/
H A Dmichael.c23 mctx->r ^= ror32(mctx->l, 2); in michael_block()
/kernel/linux/linux-6.6/net/mac80211/
H A Dmichael.c23 mctx->r ^= ror32(mctx->l, 2); in michael_block()
/kernel/linux/linux-5.10/arch/arm64/crypto/
H A Daes-ce-glue.c102 rko[0] = ror32(__aes_ce_sub(rki[kwords - 1]), 8) ^ rcon[i] ^ rki[0]; in ce_aes_expandkey()
/kernel/linux/linux-6.6/arch/arm64/crypto/
H A Daes-ce-glue.c102 rko[0] = ror32(__aes_ce_sub(rki[kwords - 1]), 8) ^ rcon[i] ^ rki[0]; in ce_aes_expandkey()
/kernel/linux/linux-5.10/lib/
H A Dsha1.c59 B = ror32(B, 2); \
/kernel/linux/linux-5.10/include/net/
H A Dchecksum.h90 sum = ror32(sum, 8); in csum_block_add()
/kernel/linux/linux-5.10/drivers/platform/mellanox/
H A Dmlxreg-io.c83 *regval = ror32(*regval & data->mask, (data->bit - 1)); in mlxreg_io_get_reg()
/kernel/linux/linux-5.10/include/linux/
H A Dbitops.h109 * ror32 - rotate a 32-bit value right
113 static inline __u32 ror32(__u32 word, unsigned int shift) in ror32() function
/kernel/linux/linux-6.6/include/linux/
H A Dbitops.h130 * ror32 - rotate a 32-bit value right
134 static inline __u32 ror32(__u32 word, unsigned int shift) in ror32() function
/kernel/linux/linux-6.6/include/net/
H A Dchecksum.h90 return (__force __wsum)ror32((__force u32)sum, 8); in csum_shift()

Completed in 10 milliseconds

12