(x, n, acc=())
| 402 | return len(res) - startlen |
| 403 | |
| 404 | def number_split_bits(x, n, acc=()): |
| 405 | if n == 1: |
| 406 | return x >> 1, x & 1 |
| 407 | if n == 2: |
| 408 | return x >> 2, (x >> 1) & 1, x & 1 |
| 409 | assert 0, "implement me!" |
| 410 | |
| 411 | def decode_varint_unsigned(b, index=0): |
| 412 | res = 0 |
no outgoing calls
no test coverage detected
searching dependent graphs…