Searched refs:SHL (Results 1 – 2 of 2) sorted by relevance
35 #define SHL(x, n) (((x) & 0xFFFFFFFF) << (n)) macro36 #define ROTL(x, n) (SHL((x), (n)) | ((x) >> (32 - (n))))
53 #define SHL(x, n) ((x) << (n)) macro62 return SHL(val, shift) | (val >> (32 - shift)); in rotl()