Home
last modified time | relevance | path

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

/openssl/providers/implementations/digests/
H A Dblake2s_prov.c201 d = rotr32(d ^ a, 16); \ in blake2s_compress()
203 b = rotr32(b ^ c, 12); \ in blake2s_compress()
205 d = rotr32(d ^ a, 8); \ in blake2s_compress()
207 b = rotr32(b ^ c, 7); \ in blake2s_compress()
H A Dblake2_impl.h110 static ossl_inline uint32_t rotr32(const uint32_t w, const unsigned int c) in rotr32() function
/openssl/crypto/aria/
H A Daria.c33 #define rotr32(v, r) (((uint32_t)(v) >> (r)) | ((uint32_t)(v) << (32 - r))) macro
419 (T2) = rotr32(T2, 16); \
467 (TMP2) = rotr32((TMP), 8); \
468 (Y) = (TMP2) ^ rotr32((TMP) ^ (TMP2), 16); \

Completed in 16 milliseconds