Searched defs:ROTL (Results 1 – 7 of 7) sorted by relevance
117 # define ROTL(a,n) (_lrotl(a,n)) macro119 # define ROTL(a,n) ((((a)<<(n))&0xffffffffL)|((a)>>((32-(n))&31))) macro
38 #define ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b)))) macro
32 #define ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b)))) macro
32 #define ROTL(x, n) (((x) << (n)) | ((x) >> (32 - (n)))) macro
708 ROTL, global() enumerator
33936 #define ROTL( global() macro [all...]