Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/davidgiven/fluxengine
/ read_be16
Method
read_be16
lib/core/bytes.h:159–164 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
157
}
158
159
uint16_t read_be16()
160
{
161
uint8_t b1 = _bytes[pos++];
162
uint8_t b2 = _bytes[pos++];
163
return (b1 << 8) | b2;
164
}
165
166
uint32_t read_be24()
167
{
Callers
15
decodeSectorRecord
Method · 0.80
decodeSectorRecord
Method · 0.80
decodeDataRecord
Method · 0.80
decodeSectorRecord
Method · 0.80
decodeSectorRecord
Method · 0.80
decodeSectorRecord
Method · 0.80
decodeDataRecord
Method · 0.80
decodeSectorRecord
Method · 0.80
decodeSectorRecord
Method · 0.80
decodeDataRecord
Method · 0.80
amigaInterleave
Function · 0.80
decodeSectorRecord
Method · 0.80
Calls
no outgoing calls
Tested by
1
test_reads
Function · 0.64