Searched refs:CRYPTO_rotl_u64 (Results 1 – 3 of 3) sorted by relevance
26 v[1] = CRYPTO_rotl_u64(v[1], 13); in siphash_round()27 v[3] = CRYPTO_rotl_u64(v[3], 16); in siphash_round()30 v[0] = CRYPTO_rotl_u64(v[0], 32); in siphash_round()33 v[1] = CRYPTO_rotl_u64(v[1], 17); in siphash_round()34 v[3] = CRYPTO_rotl_u64(v[3], 21); in siphash_round()37 v[2] = CRYPTO_rotl_u64(v[2], 32); in siphash_round()
38 const uint64_t d = c[(x + 4) % 5] ^ CRYPTO_rotl_u64(c[(x + 1) % 5], 1);62 const uint64_t value = CRYPTO_rotl_u64(prev_value, rotation); \
1001 static inline uint64_t CRYPTO_rotl_u64(uint64_t value, int shift) { in CRYPTO_rotl_u64() function
Completed in 10 milliseconds