MCPcopy Index your code
hub / github.com/python/cpython / read_varint

Function read_varint

Lib/test/test_code.py:1296–1304  ·  view source on GitHub ↗
(it)

Source from the content-addressed store, hash-verified

1294 return next(it)
1295
1296def read_varint(it):
1297 b = read(it)
1298 val = b & 63;
1299 shift = 0;
1300 while b & 64:
1301 b = read(it)
1302 shift += 6
1303 val |= (b&63) << shift
1304 return val
1305
1306def read_signed_varint(it):
1307 uval = read_varint(it)

Callers 2

read_signed_varintFunction · 0.70
parse_location_tableFunction · 0.70

Calls 1

readFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…