Searched defs:rotl32 (Results 1 – 4 of 4) sorted by relevance
111 static inline uint32_t rotl32( const uint32_t w, const unsigned c ) in rotl32() function
68 static inline uint32_t rotl32 ( uint32_t x, int8_t r ) in rotl32() function
20 rotl32(const uint32_t x, const int b) in rotl32() function
32 #define rotl32(v, r) (((uint32_t)(v) << (r)) | ((uint32_t)(v) >> (32 - r))) macro