Home
last modified time | relevance | path

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

/linux-4.1.27/crypto/
Dsha512_generic.c66 #define e0(x) (ror64(x,28) ^ ror64(x,34) ^ ror64(x,39))
67 #define e1(x) (ror64(x,14) ^ ror64(x,18) ^ ror64(x,41))
68 #define s0(x) (ror64(x, 1) ^ ror64(x, 8) ^ (x >> 7))
69 #define s1(x) (ror64(x,19) ^ ror64(x,61) ^ (x >> 6))
/linux-4.1.27/include/linux/
Dbitops.h98 static inline __u64 ror64(__u64 word, unsigned int shift) in ror64() function
/linux-4.1.27/arch/x86/crypto/
Dcamellia_glue.c811 y = ror64(y, 32); \
814 #define SET_SUBKEY_LR(INDEX, sRL) (subkey[(INDEX)] = ror64((sRL), 32))