Searched defs:rotr (Results 1 – 4 of 4) sorted by relevance
44 #define rotr(x,n) (((x)>>(n))|((x)<<(32-(n)))) macro
70 static inline u32 rotr(u32 val, int bits) in rotr() function
733 static __inline u32 rotr(u32 val, int bits) in rotr() function
39 #define rotr(x,n) (((x) >> ((int)((n) & 0x1f))) | ((x) << ((int)((32 - ((n) & 0x1f)))))) macro