Searched refs:rotr64 (Results 1 – 4 of 4) sorted by relevance
/third_party/openssl/crypto/blake2/ |
D | blake2b.c | 155 d = rotr64(d ^ a, 32); \ in blake2b_compress() 157 b = rotr64(b ^ c, 24); \ in blake2b_compress() 159 d = rotr64(d ^ a, 16); \ in blake2b_compress() 161 b = rotr64(b ^ c, 63); \ in blake2b_compress()
|
D | blake2_impl.h | 126 static ossl_inline uint64_t rotr64(const uint64_t w, const unsigned int c) in rotr64() function
|
/third_party/python/Modules/_blake2/impl/ |
D | blake2b-ref.c | 253 d = rotr64(d ^ a, 32); \ in blake2b_compress() 255 b = rotr64(b ^ c, 24); \ in blake2b_compress() 257 d = rotr64(d ^ a, 16); \ in blake2b_compress() 259 b = rotr64(b ^ c, 63); \ in blake2b_compress()
|
D | blake2-impl.h | 133 static inline uint64_t rotr64( const uint64_t w, const unsigned c ) in rotr64() function
|