Home
last modified time | relevance | path

Searched refs:__next_ (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/
H A Dforward_list299 pointer __next_;
301 _LIBCPP_HIDE_FROM_ABI __forward_begin_node() : __next_(nullptr) {}
302 _LIBCPP_HIDE_FROM_ABI explicit __forward_begin_node(pointer __n) : __next_(__n) {}
305 return static_cast<__begin_node_pointer>(__next_);
392 __ptr_ = __traits::__as_iter_node(__ptr_->__next_);
458 __ptr_ = __traits::__as_iter_node(__ptr_->__next_);
596 __x.__before_begin()->__next_ = nullptr;
603 __before_begin()->__next_ = __x.__before_begin()->__next_;
604 __x.__before_begin()->__next_ = nullptr;
626 swap(__before_begin()->__next_, __x.__before_begin()->__next_);
[all …]
H A D__hash_table87 __next_pointer __next_;
99 _LIBCPP_HIDE_FROM_ABI __hash_node_base() _NOEXCEPT : __next_(nullptr) {}
100 …_LIBCPP_HIDE_FROM_ABI explicit __hash_node_base(__next_pointer __next) _NOEXCEPT : __next_(__next)…
299 __node_ = __node_->__next_;
367 __node_ = __node_->__next_;
431 __node_ = __node_->__next_;
457 __node_ = __node_->__next_;
514 __node_ = __node_->__next_;
542 __node_ = __node_->__next_;
1074 …__bucket_list_[std::__constrain_hash(__p1_.first().__next_->__hash(), bucket_count())] = __p1_.fir…
[all …]
H A Dlist298 __link_pointer __next_;
302 __next_(_NodeTraits::__unsafe_link_pointer_cast(__self())) {}
305 : __prev_(__prev), __next_(__next) {}
381 __ptr_ = __ptr_->__next_;
439 __ptr_ = __ptr_->__next_;
526 _LIBCPP_HIDE_FROM_ABI iterator begin() _NOEXCEPT { return iterator(__end_.__next_); }
527 …CPP_HIDE_FROM_ABI const_iterator begin() const _NOEXCEPT { return const_iterator(__end_.__next_); }
597 __f->__prev_->__next_ = __l->__next_;
598 __l->__next_->__prev_ = __f->__prev_;
624 __link_pointer __f = __end_.__next_;
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__stop_token/
H A Dintrusive_list_view.h26 _Derived* __next_ = nullptr; member
45 __node->__next_ = __head_; in __push_front()
54 __head_ = __head_->__next_; in __pop_front()
65 __node->__prev_->__next_ = __node->__next_; in __remove()
66 if (__node->__next_) { in __remove()
67 __node->__next_->__prev_ = __node->__prev_; in __remove()
/freebsd/contrib/llvm-project/libcxx/include/__ranges/
H A Dchunk_by_view.h144 _LIBCPP_NO_UNIQUE_ADDRESS iterator_t<_View> __next_ = iterator_t<_View>(); variable
148 : __parent_(std::addressof(__parent)), __current_(__current), __next_(__next) {} in __iterator()
161 …_LIBCPP_ASSERT_PEDANTIC(__current_ != __next_, "Trying to dereference past-the-end chunk_by_view i…
162 return {__current_, __next_};
167 …_LIBCPP_ASSERT_PEDANTIC(__current_ != __next_, "Trying to increment past end chunk_by_view iterato…
168 __current_ = __next_;
169 __next_ = __parent_->__find_next(__current_);
182 __next_ = __current_;
183 __current_ = __parent_->__find_prev(__next_);
200 return __x.__current_ == __x.__next_;
H A Dsplit_view.h128 _LIBCPP_NO_UNIQUE_ADDRESS subrange<iterator_t<_View>> __next_ = subrange<iterator_t<_View>>();
143 … : __parent_(std::addressof(__parent)), __cur_(std::move(__current)), __next_(std::move(__next)) {}
147 _LIBCPP_HIDE_FROM_ABI constexpr value_type operator*() const { return {__cur_, __next_.begin()}; }
150 __cur_ = __next_.begin();
152 __cur_ = __next_.end();
155 __next_ = {__cur_, __cur_};
157 __next_ = __parent_->__find_next(__cur_);
/freebsd/contrib/llvm-project/libcxx/src/
H A Dmemory_resource.cpp143 __chunk_footer* __next_; member
151 __chunk_footer* next = __first_->__next_; in __release_ptr()
169 h->__next_ = __first_; in __do_allocate()
180 __chunk_footer* next = __first_->__next_; in __do_deallocate()
184 for (__chunk_footer* h = __first_; h->__next_ != nullptr; h = h->__next_) { in __do_deallocate()
185 if (h->__next_->__start_ == p) { in __do_deallocate()
186 __chunk_footer* next = h->__next_->__next_; in __do_deallocate()
187 upstream->deallocate(p, h->__next_ in __do_deallocate()
198 __chunk_footer* __next_; global() member
[all...]
/freebsd/contrib/llvm-project/libcxx/include/__memory_resource/
H A Dmonotonic_buffer_resource.h34 __chunk_footer* __next_; member
93 __chunk_footer* __next = __chunks_->__next_; in release()