Home
last modified time | relevance | path

Searched refs:__next (Results 1 – 21 of 21) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/src/experimental/
H A Dtime_zone.cpp522 …auto __next = chrono::__next_rule(__rule_begin, __continuation.__stdoff, __rule->__save.__time, __… in __get_sys_info_rule() local
540 …if (sys_seconds __begin = __rule->__save.__time != 0s ? __rule_begin : __next.first; __time < __be… in __get_sys_info_rule()
543 … __continuation_begin, __rule_begin, __next.first, __continuation, __rules, __rule), in __get_sys_info_rule()
558 sys_seconds __sys_info_end = std::min(__continuation_end(__save), __next.first); in __get_sys_info_rule()
570 if (__rule->__save.__time == 0s && __time < __next.first) { in __get_sys_info_rule()
573 __next.first, in __get_sys_info_rule()
584 if (__continuation_begin >= __rule_begin - __save && __time < __next.first) { in __get_sys_info_rule()
587 __next.first, in __get_sys_info_rule()
596 while (__next.second != __rules.end()) { in __get_sys_info_rule()
603 __next.first, in __get_sys_info_rule()
[all …]
/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Dhashtable.h137 const struct lkpi_hash_entry *__next = \
140 (__next != NULL ? container_of((const void *)__next, type, member) : NULL); \
/freebsd/contrib/llvm-project/libcxx/include/__iterator/
H A Dnext.h38 struct __next { struct
66 inline constexpr auto next = __next{}; argument
/freebsd/contrib/llvm-project/libcxx/include/__memory_resource/
H A Dmonotonic_buffer_resource.h90 __chunk_footer* __next = __chunks_->__next_; in release() local
92 __chunks_ = __next; in release()
/freebsd/contrib/llvm-project/libcxx/include/__ranges/
H A Dchunk_by_view.h147 chunk_by_view& __parent, iterator_t<_View> __current, iterator_t<_View> __next) in __iterator() argument
148 : __parent_(std::addressof(__parent)), __current_(__current), __next_(__next) {} in __iterator()
H A Dsplit_view.h142 …t_view<_View, _Pattern>& __parent, iterator_t<_View> __current, subrange<iterator_t<_View>> __next)
143 … : __parent_(std::addressof(__parent)), __cur_(std::move(__current)), __next_(std::move(__next)) {}
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
H A Dforward_list313 _LIBCPP_HIDE_FROM_ABI explicit __forward_list_node(_NodePtr __next) : _Base(__next) {}
505 _LIBCPP_HIDE_FROM_ABI __node_pointer __create_node(__node_pointer __next, _Args&&... __args) {
514 std::__construct_at(std::addressof(*__guard.__get()), __next);
566 __node_pointer __next = __p->__next_;
568 __p = __next;
837 __node_pointer __next = __first->__next_;
839 __first = __next;
877 __node_pointer __next = __first->__next_;
879 __first = __next;
H A D__hash_table98 …_LIBCPP_HIDE_FROM_ABI explicit __hash_node_base(__next_pointer __next) _NOEXCEPT : __next_(__next)…
118 …_LIBCPP_HIDE_FROM_ABI explicit __hash_node(__next_pointer __next, size_t __hash) : _Base(__next), …
1047 __next_pointer __next = __np->__next_;
1052 __np = __next;
1103 __next_pointer __next = __cache->__next_;
1105 __cache = __next;
1146 __next_pointer __next = __cache->__next_;
1148 __cache = __next;
1178 __next_pointer __next = __cache->__next_;
1180 __cache = __next;
H A Dlist289 _LIBCPP_HIDE_FROM_ABI explicit __list_node_base(__link_pointer __prev, __link_pointer __next)
290 : __prev_(__prev), __next_(__next) {}
311 …_ABI explicit __list_node(__link_pointer __prev, __link_pointer __next) : __base(__prev, __next) {}
515 …_LIBCPP_HIDE_FROM_ABI __node_pointer __create_node(__link_pointer __prev, __link_pointer __next, _…
524 std::__construct_at(std::addressof(*__guard.__get()), __prev, __next);
H A D__tree1663 const_iterator __next = std::next(__hint);
1664 if (__next == end() || value_comp()(__v, *__next)) {
1670 __parent = static_cast<__parent_pointer>(__next.__ptr_);
H A Dregex2134 const _CharT* __next = std::next(__s.__current_);
2135 if (__next != __s.__last_) {
2136 pair<_CharT, _CharT> __ch2(*__s.__current_, *__next);
/freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/
H A Dparallel_backend_tbb.h
/freebsd/contrib/llvm-project/libcxx/include/
H A Dforward_list340 …_SINCE_CXX26 _LIBCPP_HIDE_FROM_ABI explicit __forward_list_node(_NodePtr __next) : _Base(__next) {}
537 __create_node(__node_pointer __next, _Args&&... __args) {
545 std::__construct_at(std::addressof(*__guard.__get()), __next);
631 __node_pointer __next = __p->__next_;
633 __p = __next;
1192 __node_pointer __next = __first->__next_;
1194 __first = __next;
1232 __node_pointer __next = __first->__next_;
1234 __first = __next;
H A D__hash_table109 …_LIBCPP_HIDE_FROM_ABI explicit __hash_node_base(__next_pointer __next) _NOEXCEPT : __next_(__next)…
155 …_LIBCPP_HIDE_FROM_ABI explicit __hash_node(__next_pointer __next, size_t __hash) : _Base(__next), …
1202 __next_pointer __next = __np->__next_;
1207 __np = __next;
1260 __next_pointer __next = __cache->__next_;
1262 __cache = __next;
1303 __next_pointer __next = __cache->__next_;
1305 __cache = __next;
1335 __next_pointer __next = __cache->__next_;
1337 __cache = __next;
H A Distream1288 auto __next = __buffer.sgetc();
1289 for (; !_Traits::eq_int_type(__next, _Traits::eof()); __next = __buffer.sgetc()) {
1295 __1buf = __next;
1320 if (_Traits::eq_int_type(__next, _Traits::eof()))
H A Dlist303 _LIBCPP_HIDE_FROM_ABI explicit __list_node_base(__base_pointer __prev, __base_pointer __next)
304 : __prev_(__prev), __next_(__next) {}
341 …INCE_CXX26 _LIBCPP_HIDE_FROM_ABI explicit __list_node(__base_pointer __prev, __base_pointer __next)
342 : __base(__prev, __next) {}
571 __create_node(__base_pointer __prev, __base_pointer __next, _Args&&... __args) {
579 std::__construct_at(std::addressof(*__guard.__get()), __prev, __next);
H A D__tree1649 const_iterator __next = std::next(__hint);
1650 if (__next == end() || value_comp()(__v, *__next)) {
1656 __parent = __next.__ptr_;
H A Dregex2154 const _CharT* __next = std::next(__s.__current_);
2155 if (__next != __s.__last_) {
2156 pair<_CharT, _CharT> __ch2(*__s.__current_, *__next);
/freebsd/sys/contrib/openzfs/lib/libnvpair/
H A Dlibnvpair.abi2098 <var-decl name='__next' type-id='4d98cd5a' visibility='default'/>
/freebsd/sys/contrib/openzfs/lib/libzfs_core/
H A Dlibzfs_core.abi3526 <var-decl name='__next' type-id='4d98cd5a' visibility='default'/>
/freebsd/sys/contrib/openzfs/lib/libzfs/
H A Dlibzfs.abi2548 <var-decl name='__next' type-id='4d98cd5a' visibility='default'/>