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

Method get

lib/core/bytes.cc:425–434  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

423}
424
425bool BitReader::get()
426{
427 if (_bitcount == 0)
428 _fifo = _br.read_8();
429
430 bool bit = _fifo & 0x80;
431 _fifo <<= 1;
432 _bitcount = (_bitcount + 1) & 7;
433 return bit;
434}
435
436std::vector<bool> reverseBits(const std::vector<bool>& bits)
437{

Callers 15

write_bitsFunction · 0.45
encodeMethod · 0.45
write_bitsFunction · 0.45
unhexFunction · 0.45
writeImageMethod · 0.45
writeImageMethod · 0.45
writeImageMethod · 0.45
writeImageMethod · 0.45
writeImageMethod · 0.45
writeImageMethod · 0.45
printMapMethod · 0.45
writeImageMethod · 0.45

Calls 1

read_8Method · 0.80

Tested by

no test coverage detected