Lines Matching refs:__ptr_
828 __iter_pointer __ptr_;
839 : __ptr_(nullptr)
850 __ptr_ = static_cast<__iter_pointer>(
851 _VSTD::__tree_next_iter<__end_node_pointer>(static_cast<__node_base_pointer>(__ptr_)));
860 __ptr_ = static_cast<__iter_pointer>(_VSTD::__tree_prev_iter<__node_base_pointer>(
861 static_cast<__end_node_pointer>(__ptr_)));
870 {return __x.__ptr_ == __y.__ptr_;}
877 explicit __tree_iterator(__node_pointer __p) _NOEXCEPT : __ptr_(__p) {}
879 explicit __tree_iterator(__end_node_pointer __p) _NOEXCEPT : __ptr_(__p) {}
881 __node_pointer __get_np() const { return static_cast<__node_pointer>(__ptr_); }
901 __iter_pointer __ptr_;
912 : __ptr_(nullptr)
922 : __ptr_(__p.__ptr_) {}
931 __ptr_ = static_cast<__iter_pointer>(
932 _VSTD::__tree_next_iter<__end_node_pointer>(static_cast<__node_base_pointer>(__ptr_)));
942 __ptr_ = static_cast<__iter_pointer>(_VSTD::__tree_prev_iter<__node_base_pointer>(
943 static_cast<__end_node_pointer>(__ptr_)));
953 {return __x.__ptr_ == __y.__ptr_;}
961 : __ptr_(__p) {}
964 : __ptr_(__p) {}
966 __node_pointer __get_np() const { return static_cast<__node_pointer>(__ptr_); }
1940 if (__hint.__ptr_->__left_ == nullptr)
1942 __parent = static_cast<__parent_pointer>(__hint.__ptr_);
1947 __parent = static_cast<__parent_pointer>(__prior.__ptr_);
1948 return static_cast<__node_base_pointer>(__prior.__ptr_)->__right_;
2027 if (__hint.__ptr_->__left_ == nullptr)
2029 __parent = static_cast<__parent_pointer>(__hint.__ptr_);
2034 __parent = static_cast<__parent_pointer>(__prior.__ptr_);
2035 return static_cast<__node_base_pointer>(__prior.__ptr_)->__right_;
2050 __parent = static_cast<__parent_pointer>(__hint.__ptr_);
2051 return static_cast<__node_base_pointer>(__hint.__ptr_)->__right_;
2055 __parent = static_cast<__parent_pointer>(__next.__ptr_);
2063 __parent = static_cast<__parent_pointer>(__hint.__ptr_);
2064 __dummy = static_cast<__node_base_pointer>(__hint.__ptr_);
2248 __begin_node() = __r.__ptr_;
2266 __node_pointer __ptr = __nh.__ptr_;
2291 __node_pointer __ptr = __nh.__ptr_;
2362 __node_pointer __ptr = __nh.__ptr_;
2381 __node_pointer __ptr = __nh.__ptr_;
2433 return iterator(__l.__ptr_);
2718 if (__begin_node() == __p.__ptr_)