Searched defs:ROTL (Results 1 – 4 of 4) sorted by relevance
65 #define ROTL(x,n) (((x) << (n)) | ((x) >> (0x20 - n))) macro
125 #define ROTL(n,X) ( ( ( X ) << n ) | ( ( X ) >> ( 32 - n ) ) ) macro
317 SHL, SRA, SRL, ROTL, ROTR, enumerator
1079 static IRExpr* /* :: Ity_I32/64 */ ROTL ( IRExpr* src, in ROTL() function