Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dodictobject.c481 typedef struct _odictnode _ODictNode; typedef
486 _ODictNode *od_first; /* first node in the linked list, if any */
487 _ODictNode *od_last; /* last node in the linked list, if any */
491 _ODictNode **od_fast_nodes; /* hash table that mirrors the dict table */
508 _ODictNode *next;
509 _ODictNode *prev;
551 _ODictNode **fast_nodes, *node; in _odict_resize()
555 fast_nodes = PyMem_NEW(_ODictNode *, size); in _odict_resize()
603 static _ODictNode *
617 static _ODictNode *
[all …]