Searched refs:rotr32 (Results 1 – 3 of 3) sorted by relevance
199 d = rotr32(d ^ a, 16); \ in blake2s_compress()201 b = rotr32(b ^ c, 12); \ in blake2s_compress()203 d = rotr32(d ^ a, 8); \ in blake2s_compress()205 b = rotr32(b ^ c, 7); \ in blake2s_compress()
110 static ossl_inline uint32_t rotr32(const uint32_t w, const unsigned int c) in rotr32() function
33 #define rotr32(v, r) (((uint32_t)(v) >> (r)) | ((uint32_t)(v) << (32 - r))) macro419 (T2) = rotr32(T2, 16); \467 (TMP2) = rotr32((TMP), 8); \468 (Y) = (TMP2) ^ rotr32((TMP) ^ (TMP2), 16); \
Completed in 11 milliseconds