MCPcopy Create free account
hub / github.com/RobTillaart/Arduino / bitsNeeded

Function bitsNeeded

libraries/bitHelpers/bitHelpers.cpp:623–632  ·  view source on GitHub ↗

workers

Source from the content-addressed store, hash-verified

621
622// workers
623uint8_t bitsNeeded(uint8_t x)
624{
625 uint8_t n = 0;
626 while (x)
627 {
628 x >>= 1;
629 n++;
630 }
631 return n;
632}
633
634
635uint8_t bitsNeeded(uint16_t x)

Callers 1

unittestFunction · 0.85

Calls

no outgoing calls

Tested by 1

unittestFunction · 0.68