Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/davidgiven/fluxengine
/ read_be24
Method
read_be24
lib/core/bytes.h:166–172 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
164
}
165
166
uint32_t read_be24()
167
{
168
uint8_t b1 = _bytes[pos++];
169
uint8_t b2 = _bytes[pos++];
170
uint8_t b3 = _bytes[pos++];
171
return (b1 << 16) | (b2 << 8) | b3;
172
}
173
174
uint32_t read_be32()
175
{
Callers
4
decodeDataRecord
Method · 0.80
readRaw20
Method · 0.80
readRaw24
Method · 0.80
test_reads
Function · 0.80
Calls
no outgoing calls
Tested by
1
test_reads
Function · 0.64