Searched refs:rol64 (Results 1 – 5 of 5) sorted by relevance
/linux-6.3-rc2/crypto/ |
A D | sha3_generic.c | 58 t[0] = bc[4] ^ rol64(bc[1], 1); in keccakf_round() 59 t[1] = bc[0] ^ rol64(bc[2], 1); in keccakf_round() 60 t[2] = bc[1] ^ rol64(bc[3], 1); in keccakf_round() 61 t[3] = bc[2] ^ rol64(bc[4], 1); in keccakf_round() 62 t[4] = bc[3] ^ rol64(bc[0], 1); in keccakf_round() 68 st[ 1] = rol64(st[ 6] ^ t[1], 44); in keccakf_round() 69 st[ 6] = rol64(st[ 9] ^ t[4], 20); in keccakf_round() 70 st[ 9] = rol64(st[22] ^ t[2], 61); in keccakf_round() 71 st[22] = rol64(st[14] ^ t[4], 39); in keccakf_round() 72 st[14] = rol64(st[20] ^ t[0], 18); in keccakf_round() [all …]
|
/linux-6.3-rc2/include/linux/ |
A D | siphash.h | 147 (a) += (b), (b) = rol64((b), 13), (b) ^= (a), (a) = rol64((a), 32), \ 148 (c) += (d), (d) = rol64((d), 16), (d) ^= (c), \ 149 (a) += (d), (d) = rol64((d), 21), (d) ^= (a), \ 150 (c) += (b), (b) = rol64((b), 17), (b) ^= (c), (c) = rol64((c), 32))
|
A D | bitops.h | 104 static inline __u64 rol64(__u64 word, unsigned int shift) in rol64() function
|
/linux-6.3-rc2/fs/ |
A D | namei.c | 2060 y ^= x, x = rol64(x,12),\ 2061 x += y, y = rol64(y,45),\
|
/linux-6.3-rc2/drivers/scsi/lpfc/ |
A D | lpfc_init.c | 4619 return rol64(wwn, 32); in lpfc_get_wwpn()
|
Completed in 30 milliseconds