Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dodictobject.c523 #define _odict_LAST(od) (((PyODictObject *)od)->od_last) macro
641 _odict_LAST(od) = node; in _odict_add_head()
651 _odictnode_PREV(node) = _odict_LAST(od); in _odict_add_tail()
653 if (_odict_LAST(od) == NULL) in _odict_add_tail()
656 _odictnode_NEXT(_odict_LAST(od)) = node; in _odict_add_tail()
657 _odict_LAST(od) = node; in _odict_add_tail()
714 if (_odict_LAST(od) == node) in _odict_remove_node()
715 _odict_LAST(od) = _odictnode_PREV(node); in _odict_remove_node()
784 _odict_LAST(od) = NULL; in _odict_clear_nodes()
1122 node = last ? _odict_LAST(self) : _odict_FIRST(self); in OrderedDict_popitem_impl()
[all …]