Lines Matching refs:__cache
1328 __node_pointer __cache = __p1_.first().__next_;
1330 return __cache;
1380 __node_pointer __cache = __detach();
1386 while (__cache != nullptr && __u.size() != 0)
1388 __cache->__value_ = _VSTD::move(__u.remove(__i++)->__value_);
1389 __node_pointer __next = __cache->__next_;
1390 __node_insert_multi(__cache);
1391 __cache = __next;
1397 __deallocate(__cache);
1401 __deallocate(__cache);
1439 __node_pointer __cache = __detach();
1444 for (; __cache != nullptr && __first != __last; ++__first)
1446 __cache->__value_ = *__first;
1447 __node_pointer __next = __cache->__next_;
1448 __node_insert_unique(__cache);
1449 __cache = __next;
1455 __deallocate(__cache);
1459 __deallocate(__cache);
1473 __node_pointer __cache = __detach();
1478 for (; __cache != nullptr && __first != __last; ++__first)
1480 __cache->__value_ = *__first;
1481 __node_pointer __next = __cache->__next_;
1482 __node_insert_multi(__cache);
1483 __cache = __next;
1489 __deallocate(__cache);
1493 __deallocate(__cache);