Home
last modified time | relevance | path

Searched refs:ror64 (Results 1 – 5 of 5) sorted by relevance

/linux-6.1.9/crypto/
Dsha512_generic.c83 #define e0(x) (ror64(x,28) ^ ror64(x,34) ^ ror64(x,39))
84 #define e1(x) (ror64(x,14) ^ ror64(x,18) ^ ror64(x,41))
85 #define s0(x) (ror64(x, 1) ^ ror64(x, 8) ^ (x >> 7))
86 #define s1(x) (ror64(x,19) ^ ror64(x,61) ^ (x >> 6))
Dblake2b_generic.c49 d = ror64(d ^ a, 32); \
51 b = ror64(b ^ c, 24); \
53 d = ror64(d ^ a, 16); \
55 b = ror64(b ^ c, 63); \
/linux-6.1.9/arch/powerpc/include/asm/
Dchecksum.h54 return (x + ror64(x, 32)) >> 32; in from64to32()
/linux-6.1.9/include/linux/
Dbitops.h114 static inline __u64 ror64(__u64 word, unsigned int shift) in ror64() function
/linux-6.1.9/arch/x86/crypto/
Dcamellia_glue.c792 y = ror64(y, 32); \
795 #define SET_SUBKEY_LR(INDEX, sRL) (subkey[(INDEX)] = ror64((sRL), 32))