Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/BohemiaInteractive/CWR
/ RotateLeft
Function
RotateLeft
apps/tools/Tools/commands/PboCommand.cpp:39–42 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
37
{
38
39
uint32_t RotateLeft(uint32_t value, uint32_t bits)
40
{
41
return (value << bits) | (value >> (32U - bits));
42
}
43
44
std::string Md5Hex(const void* data, size_t size)
45
{
Callers
1
Md5Hex
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected