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

Method read_be32

lib/core/bytes.h:174–181  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

172 }
173
174 uint32_t read_be32()
175 {
176 uint8_t b1 = _bytes[pos++];
177 uint8_t b2 = _bytes[pos++];
178 uint8_t b3 = _bytes[pos++];
179 uint8_t b4 = _bytes[pos++];
180 return (b1 << 24) | (b2 << 16) | (b3 << 8) | b4;
181 }
182
183 uint64_t read_be48();
184 uint64_t read_be64();

Callers 11

amigaChecksumFunction · 0.80
decodeSectorRecordMethod · 0.80
A2rFluxSourceMethod · 0.80
LifDirentMethod · 0.80
mountMethod · 0.80
parseMethod · 0.80
PhileDirentMethod · 0.80
readRaw32Method · 0.80
readImageMethod · 0.80
readMethod · 0.80
test_readsFunction · 0.80

Calls

no outgoing calls

Tested by 1

test_readsFunction · 0.64