Searched defs:ROL (Results 1 – 3 of 3) sorted by relevance
21 #define ROL(x, n) ( ((x)<<(n)) | ((x)>>(32-(n))) ) macro
73 #define ROL(n, x) (((x) << (n)) | ((x) >> (32-(n)))) macro
22 #define ROL(v, n) ((v) << (n) | (v) >> (UINT_BIT - (n))) macro