Searched defs:ROT (Results 1 – 4 of 4) sorted by relevance
51 # define ROT(x, s) (((x) >> (s)) | ((x) << (32-(s)))) macro53 # define ROT(x, s) (((x) << (s)) | ((x) >> (32-(s)))) macro
54 #define ROT(a, b) (((a) << (b)) | ((a) >> (64 - (b)))) macro
119 #define ROT .rotate = true macro
1079 #define ROT(val, n) ( ((val) << (n)) | ((val) >> (32 - (n))) ) macro