Searched refs:_odict_LAST (Results 1 – 1 of 1) sorted by relevance
523 #define _odict_LAST(od) (((PyODictObject *)od)->od_last) macro643 _odict_LAST(od) = node; in _odict_add_head()653 _odictnode_PREV(node) = _odict_LAST(od); in _odict_add_tail()655 if (_odict_LAST(od) == NULL) in _odict_add_tail()658 _odictnode_NEXT(_odict_LAST(od)) = node; in _odict_add_tail()659 _odict_LAST(od) = node; in _odict_add_tail()716 if (_odict_LAST(od) == node) in _odict_remove_node()717 _odict_LAST(od) = _odictnode_PREV(node); in _odict_remove_node()786 _odict_LAST(od) = NULL; in _odict_clear_nodes()1172 node = last ? _odict_LAST(self) : _odict_FIRST(self); in OrderedDict_popitem_impl()[all …]