Symbol: ror32
arch/arm/crypto/aes-ce-glue.c
95
rko[0] = ror32(ce_aes_sub(rki[kwords - 1]), 8);
arch/arm/kernel/module.c
227
offset = ror32(tmp & 0xff, (tmp & 0xf00) >> 7);
arch/arm/net/bpf_jit_32.c
344
if ((x & ~ror32(0xff, 2 * rot)) == 0)
arch/riscv/lib/csum.c
194
csum = (u32)csum + ror32((u32)csum, 16);
arch/riscv/lib/csum.c
253
csum = (u32)csum + ror32((u32)csum, 16);
arch/x86/crypto/des3_ede_glue.c
270
tmp = ror32(ctx->enc.expkey[i + 1], 4);
crypto/camellia_generic.c
350
yr = ror32(yr, 8); \
crypto/camellia_generic.c
839
yr ^= ror32(il, 8) ^ ir; \
crypto/michael_mic.c
42
r ^= ror32(l, 2); \
crypto/serpent_generic.c
55
x3 ^= k[4*i+3]; x0 = ror32(x0, 5); x2 = ror32(x2, 22);\
crypto/serpent_generic.c
57
x4 <<= 7; x0 ^= x1; x1 = ror32(x1, 1); \
crypto/serpent_generic.c
58
x2 ^= x4; x3 = ror32(x3, 7); x4 = x0 << 3; \
crypto/serpent_generic.c
59
x1 ^= x0; x3 ^= x4; x0 = ror32(x0, 13);\
crypto/serpent_generic.c
60
x1 ^= x2; x3 ^= x2; x2 = ror32(x2, 3); \
crypto/twofish_generic.c
57
(c) = ror32((c), 1); \
crypto/twofish_generic.c
64
(d) = ror32((d), 1); \
drivers/i2c/busses/i2c-mlxbf.c
631
data32 = ror32(data32, MLXBF_I2C_SHIFT_8);
drivers/irqchip/irq-gic.c
992
val |= ror32(active_mask, ror_val);
drivers/leds/leds-mlxreg.c
124
regval = (ror32(data->mask, data->bit) == 0xf0) ? ror32(regval,
drivers/leds/leds-mlxreg.c
125
data->bit) : ror32(regval, data->bit + 4);
drivers/leds/leds-mlxreg.c
84
nib = (ror32(data->mask, data->bit) == 0xf0) ? rol32(vset, data->bit) :
drivers/mmc/host/dw_mmc-k3.c
345
v = ror32(sample_flag, i);
drivers/platform/mellanox/mlxreg-io.c
84
*regval = ror32(*regval & data->mask, (data->bit - 1));
fs/adfs/dir_fplus.c
89
dircheck = ror32(dircheck, 13) ^ le32_to_cpup(bp++);
fs/adfs/dir_fplus.c
95
dircheck = ror32(dircheck, 13) ^ le32_to_cpu(t->bigdirendname);
fs/adfs/dir_fplus.c
96
dircheck = ror32(dircheck, 13) ^ t->bigdirendmasseq;
fs/adfs/dir_fplus.c
97
dircheck = ror32(dircheck, 13) ^ t->reserved[0];
fs/adfs/dir_fplus.c
98
dircheck = ror32(dircheck, 13) ^ t->reserved[1];
include/asm-generic/checksum.h
36
return (__force __sum16)((~sum - ror32(sum, 16)) >> 16);
include/linux/randomize_kstack.h
89
offset = ror32(offset, 5) ^ (rand); \
include/net/checksum.h
90
return (__force __wsum)ror32((__force u32)sum, 8);
lib/crypto/aes.c
223
u32 y = mul_by_x(x) ^ ror32(x, 16);
lib/crypto/aes.c
225
return y ^ ror32(x ^ y, 8);
lib/crypto/aes.c
247
return mix_columns(x ^ y ^ ror32(y, 16));
lib/crypto/aes.c
271
rko[0] = ror32(subw(rki[kwords - 1]), 8) ^ rc ^ rki[0];
lib/crypto/arm64/aes.h
65
rko[0] = ror32(__aes_ce_sub(rki[kwords - 1]), 8) ^
lib/crypto/blake2s.c
66
d = ror32(d ^ a, 16); \
lib/crypto/blake2s.c
68
b = ror32(b ^ c, 12); \
lib/crypto/blake2s.c
70
d = ror32(d ^ a, 8); \
lib/crypto/blake2s.c
72
b = ror32(b ^ c, 7); \
lib/crypto/des.c
25
#define ROR(x, r) ((x) = ror32((x), (r)))
lib/crypto/sha1.c
64
B = ror32(B, 2); \
lib/crypto/sha256.c
59
#define e0(x) (ror32((x), 2) ^ ror32((x), 13) ^ ror32((x), 22))
lib/crypto/sha256.c
60
#define e1(x) (ror32((x), 6) ^ ror32((x), 11) ^ ror32((x), 25))
lib/crypto/sha256.c
61
#define s0(x) (ror32((x), 7) ^ ror32((x), 18) ^ ((x) >> 3))
lib/crypto/sha256.c
62
#define s1(x) (ror32((x), 17) ^ ror32((x), 19) ^ ((x) >> 10))
net/mac80211/michael.c
23
mctx->r ^= ror32(mctx->l, 2);
tools/lib/bpf/libbpf_utils.c
169
#define Sigma_0(x) (ror32((x), 2) ^ ror32((x), 13) ^ ror32((x), 22))
tools/lib/bpf/libbpf_utils.c
170
#define Sigma_1(x) (ror32((x), 6) ^ ror32((x), 11) ^ ror32((x), 25))
tools/lib/bpf/libbpf_utils.c
171
#define sigma_0(x) (ror32((x), 7) ^ ror32((x), 18) ^ ((x) >> 3))
tools/lib/bpf/libbpf_utils.c
172
#define sigma_1(x) (ror32((x), 17) ^ ror32((x), 19) ^ ((x) >> 10))
tools/perf/util/blake2s.c
72
d = ror32(d ^ a, 16); \
tools/perf/util/blake2s.c
74
b = ror32(b ^ c, 12); \
tools/perf/util/blake2s.c
76
d = ror32(d ^ a, 8); \
tools/perf/util/blake2s.c
78
b = ror32(b ^ c, 7); \