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

Function write_byte

arch/victor9k/encoder.cc:88–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

86}
87
88static void write_byte(std::vector<bool>& bits, unsigned& cursor, uint8_t b)
89{
90 write_bits(bits, cursor, encode_data_gcr(b >> 4), 5);
91 write_bits(bits, cursor, encode_data_gcr(b), 5);
92}
93
94static void write_bytes(
95 std::vector<bool>& bits, unsigned& cursor, const Bytes& bytes)

Callers 3

write_bytesFunction · 0.85
write_gapFunction · 0.85
write_sector_dataFunction · 0.85

Calls 2

write_bitsFunction · 0.70
encode_data_gcrFunction · 0.70

Tested by

no test coverage detected