MCPcopy Create free account
hub / github.com/PurpleI2P/i2pd / Add

Function Add

libi2pd/Gost.cpp:815–824  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

813 }
814
815 void Add (uint32_t c)
816 {
817 for (int i = 63; i >= 0; i--)
818 {
819 if (!c) return;
820 c += buf[i];
821 buf[i] = c;
822 c >>= 8;
823 }
824 }
825
826 void F ()
827 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected