Searched defs:ROTL32 (Results 1 – 7 of 7) sorted by relevance
25 #define ROTL32(x, r) (((x) << (r)) | ((x) >> (32 - (r)))) macro
25 #define ROTL32(x, r) ((x) << (r)) | ((x) >> (32 - (r))) macro
136 # define ROTL32(x, r) _rotl(x, r) macro139 # define ROTL32(x, r) (((uint32_t)x << r) | ((uint32_t)x >> (32 - r))) macro
24 #define ROTL32(v, n) \ macro
23 #define ROTL32(v, n) \ macro
34 #define ROTL32(v, n) \ macro
279 #define ROTL32( x, r ) ( x << r ) | ( x >> ( 32 - r ) ) macro