| 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 | { |
nothing calls this directly
no outgoing calls
no test coverage detected