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

Function read_signed_varint

Tools/gdb/libpython.py:667–672  ·  view source on GitHub ↗
(it)

Source from the content-addressed store, hash-verified

665 return val
666
667def read_signed_varint(it):
668 uval = read_varint(it)
669 if uval & 1:
670 return -(uval >> 1)
671 else:
672 return uval >> 1
673
674def parse_location_table(firstlineno, linetable):
675 line = firstlineno

Callers 1

parse_location_tableFunction · 0.70

Calls 1

read_varintFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…