/Linux-v4.19/drivers/leds/ |
D | leds-mlxreg.c | 84 nib = (ror32(data->mask, data->bit) == 0xf0) ? rol32(vset, data->bit) : in mlxreg_led_store_hw() 124 regval = (ror32(data->mask, data->bit) == 0xf0) ? ror32(regval, in mlxreg_led_get_hw() 125 data->bit) : ror32(regval, data->bit + 4); in mlxreg_led_get_hw()
|
/Linux-v4.19/crypto/ |
D | sha256_generic.c | 56 #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))
|
D | aes_generic.c | 1137 (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); \
|
D | aes_ti.c | 119 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()
|
D | twofish_generic.c | 70 (c) = ror32((c), 1); \ 77 (d) = ror32((d), 1); \
|
D | speck.c | 149 *x = ror32(*x, 8); in speck64_round() 159 *y = ror32(*y, 3); in speck64_unround()
|
D | michael_mic.c | 45 r ^= ror32(l, 2); \
|
D | serpent_generic.c | 64 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); \
|
D | camellia_generic.c | 370 yr = ror32(yr, 8); \ 859 yr ^= ror32(il, 8) ^ ir; \
|
D | des_generic.c | 26 #define ROR(x, r) ((x) = ror32((x), (r)))
|
/Linux-v4.19/lib/ |
D | sha256.c | 33 #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))
|
D | sha1.c | 58 B = ror32(B, 2); } while (0)
|
/Linux-v4.19/net/mac80211/ |
D | michael.c | 26 mctx->r ^= ror32(mctx->l, 2); in michael_block()
|
/Linux-v4.19/drivers/staging/ks7010/ |
D | michael_mic.c | 42 mic->r ^= ror32(mic->l, 2); in michael_block()
|
/Linux-v4.19/arch/arm64/crypto/ |
D | aes-ce-glue.c | 107 rko[0] = ror32(__aes_ce_sub(rki[kwords - 1]), 8) ^ rcon[i] ^ rki[0]; in ce_aes_expandkey()
|
/Linux-v4.19/include/net/ |
D | checksum.h | 94 sum = ror32(sum, 8); in csum_block_add()
|
/Linux-v4.19/include/linux/ |
D | bitops.h | 91 static inline __u32 ror32(__u32 word, unsigned int shift) in ror32() function
|
/Linux-v4.19/drivers/platform/mellanox/ |
D | mlxreg-io.c | 79 *regval = ror32(*regval & data->mask, (data->bit - 1)); in mlxreg_io_get_reg()
|
/Linux-v4.19/drivers/mmc/host/ |
D | dw_mmc-k3.c | 349 v = ror32(sample_flag, i); in dw_mci_get_best_clksmpl()
|
/Linux-v4.19/arch/x86/crypto/ |
D | des3_ede_glue.c | 370 tmp = ror32(ctx->enc_expkey[i + 1], 4); in des3_ede_x86_setkey()
|
/Linux-v4.19/arch/arm/crypto/ |
D | aes-ce-glue.c | 93 rko[0] = ror32(ce_aes_sub(rki[kwords - 1]), 8); in ce_aes_expandkey()
|
/Linux-v4.19/drivers/irqchip/ |
D | irq-gic.c | 911 val |= ror32(active_mask, ror_val); in gic_migrate_target()
|
/Linux-v4.19/arch/arm/net/ |
D | bpf_jit_32.c | 295 if ((x & ~ror32(0xff, 2 * rot)) == 0) in imm8m()
|