Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
26
static unsigned int RotateRight32(unsigned int x, int Shift)
27
{
28
return (x >> Shift) | (x << (-Shift & 31));
29
}
30
31
void CPrng::Seed(uint64_t aSeed[2])
32
{
Callers
1
RandomBits
Method · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected