Home | History | Annotate | Download | only in nss

Lines Matching defs:ROTL32

147 #define ROTL32(x,n) _lrotl(x,n)
150 #define ROTL32(x,n) ((x << n) | (x >> ((8 * sizeof x) - n)))