MCPcopy 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

decodeDataRecordMethod · 0.80
decodeSectorRecordMethod · 0.80
ZDosDescriptorMethod · 0.80
AppledosDirentMethod · 0.80
EntryMethod · 0.80
SmakyDirentMethod · 0.80
EntryMethod · 0.80
CbmfsDirentMethod · 0.80
ProdosDirentMethod · 0.80
readDirectoryBlockMethod · 0.80
getMetadataMethod · 0.80
getFileMethod · 0.80

Calls

no outgoing calls

Tested by 1

test_readsFunction · 0.64