Lines Matching refs:_odict_LAST
523 #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()
1275 node = last ? _odict_LAST(self) : _odict_FIRST(self); in OrderedDict_move_to_end_impl()
1285 if (node != _odict_LAST(self)) { in OrderedDict_move_to_end_impl()
1883 node = reversed ? _odict_LAST(od) : _odict_FIRST(od); in odictiter_new()