MCPcopy Create free account
hub / github.com/davidgiven/fluxengine / read_le32

Method read_le32

lib/core/bytes.h:201–208  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

199 }
200
201 uint32_t read_le32()
202 {
203 uint8_t b1 = _bytes[pos++];
204 uint8_t b2 = _bytes[pos++];
205 uint8_t b3 = _bytes[pos++];
206 uint8_t b4 = _bytes[pos++];
207 return (b4 << 24) | (b3 << 16) | (b2 << 8) | b1;
208 }
209
210private:
211 const Bytes& _bytes;

Callers 11

readSingleFluxMethod · 0.80
CwfFluxSourceMethod · 0.80
A2rFluxSourceMethod · 0.80
findChunkMethod · 0.80
ProdosDirentMethod · 0.80
getVersionMethod · 0.80
readImageMethod · 0.80
readImageMethod · 0.80
readMethod · 0.80
readStreamFunction · 0.80
test_readsFunction · 0.80

Calls

no outgoing calls

Tested by 1

test_readsFunction · 0.64