Searched defs:rotr32 (Results 1 – 4 of 4) sorted by relevance
121 static inline uint32_t rotr32( const uint32_t w, const unsigned c ) in rotr32() function
7 #define rotr32(x) _mm256_shuffle_epi32(x, _MM_SHUFFLE(2, 3, 0, 1)) macro
34 rotr32(const uint32_t x, const int b) in rotr32() function
49 #define rotr32(x, n) (((x) >> (n)) | ((x) << (32 - (n)))) macro