MCPcopy 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

decodeSectorRecordMethod · 0.80
decodeSectorRecordMethod · 0.80
decodeDataRecordMethod · 0.80
decodeSectorRecordMethod · 0.80
decodeSectorRecordMethod · 0.80
decodeSectorRecordMethod · 0.80
decodeDataRecordMethod · 0.80
decodeSectorRecordMethod · 0.80
decodeSectorRecordMethod · 0.80
decodeDataRecordMethod · 0.80
amigaInterleaveFunction · 0.80
decodeSectorRecordMethod · 0.80

Calls

no outgoing calls

Tested by 1

test_readsFunction · 0.64