Lines Matching refs:__cache
1594 __next_pointer __cache = __p1_.first().__next_;
1596 return __cache;
1644 __next_pointer __cache = __detach();
1650 while (__cache != nullptr && __u.size() != 0)
1652 __cache->__upcast()->__value_ =
1654 __next_pointer __next = __cache->__next_;
1655 __node_insert_multi(__cache->__upcast());
1656 __cache = __next;
1662 __deallocate_node(__cache);
1666 __deallocate_node(__cache);
1706 __next_pointer __cache = __detach();
1711 for (; __cache != nullptr && __first != __last; ++__first)
1713 __cache->__upcast()->__value_ = *__first;
1714 __next_pointer __next = __cache->__next_;
1715 __node_insert_unique(__cache->__upcast());
1716 __cache = __next;
1722 __deallocate_node(__cache);
1726 __deallocate_node(__cache);
1746 __next_pointer __cache = __detach();
1751 for (; __cache != nullptr && __first != __last; ++__first)
1753 __cache->__upcast()->__value_ = *__first;
1754 __next_pointer __next = __cache->__next_;
1755 __node_insert_multi(__cache->__upcast());
1756 __cache = __next;
1762 __deallocate_node(__cache);
1766 __deallocate_node(__cache);