Searched defs:ROTL32 (Results 1 – 3 of 3) sorted by relevance
74 #define ROTL32(x,y) _rotl(x,y) macro78 #define ROTL32(x,r) (((uint32_t)x << r) | ((uint32_t)x >> (32 - r))) macro
66 #define ROTL32(x,y) _rotl(x,y) macro72 #define ROTL32(x,r) (((uint32_t)x << r) | ((uint32_t)x >> (32 - r))) macro
113 #define ROTL32(s,v) (((v) << (s)) | ((v) >> (32 - (s)))) macro
Completed in 8 milliseconds