Searched refs:ror64 (Results 1 – 5 of 5) sorted by relevance
/Linux-v4.19/crypto/ |
D | sha512_generic.c | 88 #define e0(x) (ror64(x,28) ^ ror64(x,34) ^ ror64(x,39)) 89 #define e1(x) (ror64(x,14) ^ ror64(x,18) ^ ror64(x,41)) 90 #define s0(x) (ror64(x, 1) ^ ror64(x, 8) ^ (x >> 7)) 91 #define s1(x) (ror64(x,19) ^ ror64(x,61) ^ (x >> 6))
|
D | speck.c | 37 *x = ror64(*x, 8); in speck128_round() 47 *y = ror64(*y, 3); in speck128_unround()
|
/Linux-v4.19/include/linux/ |
D | bitops.h | 71 static inline __u64 ror64(__u64 word, unsigned int shift) in ror64() function
|
/Linux-v4.19/arch/powerpc/include/asm/ |
D | checksum.h | 60 return (x + ror64(x, 32)) >> 32; in from64to32()
|
/Linux-v4.19/arch/x86/crypto/ |
D | camellia_glue.c | 808 y = ror64(y, 32); \ 811 #define SET_SUBKEY_LR(INDEX, sRL) (subkey[(INDEX)] = ror64((sRL), 32))
|