Home
last modified time | relevance | path

Searched refs:od_fast_nodes (Results 1 – 1 of 1) sorted by relevance

/third_party/python/Objects/
Dodictobject.c491 _ODictNode **od_fast_nodes; /* hash table that mirrors the dict table */ member
577 PyMem_Free(od->od_fast_nodes); in _odict_resize()
578 od->od_fast_nodes = fast_nodes; in _odict_resize()
615 assert(od->od_fast_nodes != NULL); in _odict_find_node_hash()
616 return od->od_fast_nodes[index]; in _odict_find_node_hash()
633 assert(od->od_fast_nodes != NULL); in _odict_find_node()
634 return od->od_fast_nodes[index]; in _odict_find_node()
678 assert(od->od_fast_nodes != NULL); in _odict_add_new_node()
679 if (od->od_fast_nodes[i] != NULL) { in _odict_add_new_node()
696 od->od_fast_nodes[i] = node; in _odict_add_new_node()
[all …]