MCPcopy Create free account
hub / github.com/ddnet/ddnet / RotateRight32

Function RotateRight32

src/game/prng.cpp:26–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24}
25
26static unsigned int RotateRight32(unsigned int x, int Shift)
27{
28 return (x >> Shift) | (x << (-Shift & 31));
29}
30
31void CPrng::Seed(uint64_t aSeed[2])
32{

Callers 1

RandomBitsMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected