Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/BTCGPU/BTCGPU
/ ROTL32
Function
ROTL32
src/hash.cpp:10–13 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
8
9
10
inline uint32_t ROTL32(uint32_t x, int8_t r)
11
{
12
return (x << r) | (x >> (32 - r));
13
}
14
15
unsigned int MurmurHash3(unsigned int nHashSeed, const std::vector<unsigned char>& vDataToHash)
16
{
Callers
1
MurmurHash3
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected