Searched refs:rotr64 (Results 1 - 7 of 7) sorted by relevance

/freebsd-current/sys/contrib/openzfs/module/icp/algs/sha2/
H A Dsha2_generic.c138 #define rotr64(x, n) (((x) >> n) | ((x) << (64 - n))) macro
139 #define sum0(x) (rotr64((x), 28) ^ rotr64((x), 34) ^ rotr64((x), 39))
140 #define sum1(x) (rotr64((x), 14) ^ rotr64((x), 18) ^ rotr64((x), 41))
141 #define sigma0(x) (rotr64((x), 1) ^ rotr64((x), 8) ^ ((x) >> 7))
142 #define sigma1(x) (rotr64((
[all...]
/freebsd-current/crypto/openssl/providers/implementations/digests/
H A Dblake2b_prov.c208 d = rotr64(d ^ a, 32); \
210 b = rotr64(b ^ c, 24); \
212 d = rotr64(d ^ a, 16); \
214 b = rotr64(b ^ c, 63); \
H A Dblake2_impl.h115 static ossl_inline uint64_t rotr64(const uint64_t w, const unsigned int c) function
/freebsd-current/sys/contrib/libb2/
H A Dblake2b-ref.c260 d = rotr64(d ^ a, 32); \
262 b = rotr64(b ^ c, 24); \
264 d = rotr64(d ^ a, 16); \
266 b = rotr64(b ^ c, 63); \
H A Dblake2-impl.h126 static inline uint64_t rotr64( const uint64_t w, const unsigned c ) function
/freebsd-current/sys/contrib/libsodium/src/libsodium/include/sodium/private/
H A Dcommon.h39 #define ROTR64(X, B) rotr64((X), (B))
41 rotr64(const uint64_t x, const int b) function
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_blake2_impl.h149 static BLAKE2_INLINE uint64_t rotr64( const uint64_t w, const unsigned c ) function

Completed in 128 milliseconds