Lines Matching refs:__cache
1615 __next_pointer __cache = __p1_.first().__next_;
1617 return __cache;
1667 __next_pointer __cache = __detach();
1673 while (__cache != nullptr && __u.size() != 0)
1675 __cache->__upcast()->__value_ =
1677 __next_pointer __next = __cache->__next_;
1678 __node_insert_multi(__cache->__upcast());
1679 __cache = __next;
1685 __deallocate_node(__cache);
1689 __deallocate_node(__cache);
1731 __next_pointer __cache = __detach();
1736 for (; __cache != nullptr && __first != __last; ++__first)
1738 __cache->__upcast()->__value_ = *__first;
1739 __next_pointer __next = __cache->__next_;
1740 __node_insert_unique(__cache->__upcast());
1741 __cache = __next;
1747 __deallocate_node(__cache);
1751 __deallocate_node(__cache);
1771 __next_pointer __cache = __detach();
1776 for (; __cache != nullptr && __first != __last; ++__first)
1778 __cache->__upcast()->__value_ = *__first;
1779 __next_pointer __next = __cache->__next_;
1780 __node_insert_multi(__cache->__upcast());
1781 __cache = __next;
1787 __deallocate_node(__cache);
1791 __deallocate_node(__cache);