Home | History | Annotate | Download | only in include

Lines Matching full:__pn

1857         __next_pointer __pn = __bucket_list_[__chash];
1858 if (__pn == nullptr)
1860 __pn =__p1_.first().__ptr();
1861 __nd->__next_ = __pn->__next_;
1862 __pn->__next_ = __nd->__ptr();
1864 __bucket_list_[__chash] = __pn;
1870 __nd->__next_ = __pn->__next_;
1871 __pn->__next_ = __nd->__ptr();
1899 __next_pointer __pn = __bucket_list_[__chash];
1900 if (__pn == nullptr)
1902 __pn =__p1_.first().__ptr();
1903 __cp->__next_ = __pn->__next_;
1904 __pn->__next_ = __cp->__ptr();
1906 __bucket_list_[__chash] = __pn;
1913 for (bool __found = false; __pn->__next_ != nullptr &&
1914 __constrain_hash(__pn->__next_->__hash(), __bc) == __chash;
1915 __pn = __pn->__next_)
1922 if (__found != (__pn->__next_->__hash() == __cp->__hash_ &&
1923 key_eq()(__pn->__next_->__upcast()->__value_, __cp->__value_)))
1931 __cp->__next_ = __pn->__next_;
1932 __pn->__next_ = __cp->__ptr();
2034 __next_pointer __pn = __bucket_list_[__chash];
2035 if (__pn == nullptr)
2037 __pn = __p1_.first().__ptr();
2038 __h->__next_ = __pn->__next_;
2039 __pn->__next_ = __h.get()->__ptr();
2041 __bucket_list_[__chash] = __pn;
2048 __h->__next_ = __pn->__next_;
2049 __pn->__next_ = static_cast<__next_pointer>(__h.get());
2432 __next_pointer __pn = __bucket_list_[__chash];
2433 for (; __pn->__next_ != __cn; __pn = __pn->__next_)
2436 // if __pn is not in same bucket (before begin is not in same bucket) &&
2438 if (__pn == __p1_.first().__ptr()
2439 || __constrain_hash(__pn->__hash(), __bc) != __chash)
2450 __bucket_list_[__nhash] = __pn;
2453 __pn->__next_ = __cn->__next_;