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

Function decode_node

Tools/unicode/dawg.py:422–425  ·  view source on GitHub ↗
(packed, node)

Source from the content-addressed store, hash-verified

420 return res, index
421
422def decode_node(packed, node):
423 x, node = decode_varint_unsigned(packed, node)
424 node_count, final = number_split_bits(x, 1)
425 return node_count, final, node
426
427def decode_edge(packed, edgeindex, prev_child_offset, offset):
428 x, offset = decode_varint_unsigned(packed, offset)

Callers 2

_lookupFunction · 0.85
_inverse_lookupFunction · 0.85

Calls 2

decode_varint_unsignedFunction · 0.85
number_split_bitsFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…