Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/davidgiven/fluxengine
/ read_le16
Method
read_le16
lib/core/bytes.h:186–191 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
184
uint64_t read_be64();
185
186
uint16_t read_le16()
187
{
188
uint8_t b1 = _bytes[pos++];
189
uint8_t b2 = _bytes[pos++];
190
return (b2 << 8) | b1;
191
}
192
193
uint32_t read_le24()
194
{
Callers
15
decodeDataRecord
Method · 0.80
decodeSectorRecord
Method · 0.80
ZDosDescriptor
Method · 0.80
AppledosDirent
Method · 0.80
Entry
Method · 0.80
SmakyDirent
Method · 0.80
Entry
Method · 0.80
CbmfsDirent
Method · 0.80
ProdosDirent
Method · 0.80
readDirectoryBlock
Method · 0.80
getMetadata
Method · 0.80
getFile
Method · 0.80
Calls
no outgoing calls
Tested by
1
test_reads
Function · 0.64