Home | History | Annotate | Download | only in priv

Lines Matching refs:sh

429 static UInt ROR32 ( UInt x, UInt sh ) {
430 vassert(sh >= 0 && sh < 32);
431 if (sh == 0)
434 return (x << (32-sh)) | (x >> sh);