Replaced _rotl64 with std::rotl

This commit is contained in:
Tom Lally 2022-08-28 10:34:57 +01:00
parent 6408cfdd4b
commit cd2b081098
8 changed files with 44 additions and 48 deletions

View file

@ -177,10 +177,6 @@ inline sint16 _swapEndianS16(sint16 v)
return (sint16)(((uint16)v >> 8) | ((uint16)v << 8));
}
inline uint64 _rotl64(uint64 x, sint8 r)
{
return (x << r) | (x >> (64 - r));
}
inline uint64 _umul128(uint64 multiplier, uint64 multiplicand, uint64 *highProduct) {