Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/davidgiven/fluxengine
/ rol
Function
rol
arch/fb100/decoder.cc:61–67 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
59
*/
60
61
static void rol(uint8_t& b, bool& c)
62
{
63
bool newc = b & 0x80;
64
b <<= 1;
65
b |= c;
66
c = newc;
67
}
68
69
static uint16_t checksum(const Bytes& bytes)
70
{
Callers
1
checksum
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected