Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ddnet/ddnet
/ uint_to_bytes_be
Function
uint_to_bytes_be
src/base/bytes.cpp:40–46 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
38
}
39
40
void uint_to_bytes_be(unsigned char *bytes, unsigned value)
41
{
42
bytes[0] = (value >> 24u) & 0xffu;
43
bytes[1] = (value >> 16u) & 0xffu;
44
bytes[2] = (value >> 8u) & 0xffu;
45
bytes[3] = value & 0xffu;
46
}
Callers
10
HandleChecksum
Method · 0.85
Stop
Method · 0.85
ToUuid
Method · 0.85
GetExternalItemType
Method · 0.85
Start
Method · 0.85
WriteTickMarker
Method · 0.85
Stop
Method · 0.85
WriteSecurityToken
Function · 0.85
UpdateDebugDummies
Method · 0.85
TEST
Function · 0.85
Calls
no outgoing calls
Tested by
1
TEST
Function · 0.68