| /freebsd/contrib/llvm-project/libcxx/include/__compare/ |
| H A D | ordering.h | 55 …IDE_FROM_ABI explicit constexpr partial_ordering(_PartialOrdResult __v) noexcept : __value_(__v) {} in partial_ordering() 68 return __v.__value_ == _PartialOrdResult::__equiv; 72 return __v.__value_ == _PartialOrdResult::__less; 76 return __v.__value_ == _PartialOrdResult::__equiv || __v.__value_ == _PartialOrdResult::__less; 80 return __v.__value_ == _PartialOrdResult::__greater; 84 … return __v.__value_ == _PartialOrdResult::__equiv || __v.__value_ == _PartialOrdResult::__greater; 88 return __v.__value_ == _PartialOrdResult::__greater; 92 … return __v.__value_ == _PartialOrdResult::__equiv || __v.__value_ == _PartialOrdResult::__greater; 96 return __v.__value_ == _PartialOrdResult::__less; 100 return __v.__value_ == _PartialOrdResult::__equiv || __v.__value_ == _PartialOrdResult::__less; [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__ranges/ |
| H A D | iota_view.h | 120 _Start __value_ = _Start(); 126 …_LIBCPP_HIDE_FROM_ABI constexpr explicit __iterator(_Start __value) : __value_(std::move(__value))… 129 return __value_; 133 ++__value_; 150 --__value_; 167 __value_ += static_cast<_Start>(__n); 169 __value_ -= static_cast<_Start>(-__n); 172 __value_ += __n; 182 __value_ -= static_cast<_Start>(__n); 184 __value_ += static_cast<_Start>(-__n); [all …]
|
| H A D | non_propagating_cache.h | 54 optional<__wrapper> __value_ = nullopt; variable 60 : __value_(nullopt) {} in __non_propagating_cache() 63 : __value_(nullopt) { in __non_propagating_cache() 64 __other.__value_.reset(); in __non_propagating_cache() 69 __value_.reset(); 75 __value_.reset(); 76 __other.__value_.reset(); 80 _LIBCPP_HIDE_FROM_ABI constexpr _Tp& operator*() { return __value_->__t_; } 81 _LIBCPP_HIDE_FROM_ABI constexpr _Tp const& operator*() const { return __value_->__t_; } 83 _LIBCPP_HIDE_FROM_ABI constexpr bool __has_value() const { return __value_.has_value(); } in __has_value() [all …]
|
| H A D | single_view.h | 45 _LIBCPP_NO_UNIQUE_ADDRESS __movable_box<_Tp> __value_; variable 56 : __value_(in_place, __t) { in single_view() 59 …_LIBCPP_HIDE_FROM_ABI constexpr explicit single_view(_Tp&& __t) : __value_(in_place, std::move(__t… in single_view() 64 : __value_{in_place, std::forward<_Args>(__args)...} {} in single_view() 78 _LIBCPP_HIDE_FROM_ABI constexpr _Tp* data() noexcept { return __value_.operator->(); } in data() 80 _LIBCPP_HIDE_FROM_ABI constexpr const _Tp* data() const noexcept { return __value_.operator->(); } in data()
|
| H A D | repeat_view.h | 89 : __value_(in_place, __value), __bound_(__bound_sentinel) { 95 : __value_(in_place, std::move(__value)), __bound_(__bound_sentinel) { 104 : __value_(in_place, std::make_from_tuple<_Tp>(std::move(__value_args))), 111 …_HIDE_FROM_ABI constexpr __iterator begin() const { return __iterator(std::addressof(*__value_)); } 116 return __iterator(std::addressof(*__value_), __bound_); 128 _LIBCPP_NO_UNIQUE_ADDRESS __movable_box<_Tp> __value_; 145 : __value_(__value), __current_(__bound_sentinel) {} 155 _LIBCPP_HIDE_FROM_ABI constexpr const _Tp& operator*() const noexcept { return *__value_; } 225 const _Tp* __value_ = nullptr;
|
| H A D | istream_view.h | 50 *__stream_ >> __value_; in begin() 58 _LIBCPP_NO_UNIQUE_ADDRESS _Val __value_ = _Val(); variable 79 *__parent_->__stream_ >> __parent_->__value_; 85 _LIBCPP_HIDE_FROM_ABI _Val& operator*() const { return __parent_->__value_; }
|
| H A D | take_view.h | 311 …noexcept(noexcept(views::repeat(*__range.__value_, std::min<_Dist>(ranges::distance(__range), std:… 312 …-> decltype( views::repeat(*__range.__value_, std::min<_Dist>(ranges::distance(__range), std:… 313 …{ return views::repeat(*__range.__value_, std::min<_Dist>(ranges::distance(__range), std:… 322 noexcept(noexcept(views::repeat(*__range.__value_, static_cast<_Dist>(__n)))) 323 -> decltype( views::repeat(*__range.__value_, static_cast<_Dist>(__n))) 324 { return views::repeat(*__range.__value_, static_cast<_Dist>(__n)); }
|
| H A D | drop_view.h | 270 …noexcept(noexcept(views::repeat(*__range.__value_, ranges::distance(__range) - std::min<_Dist>(ran… 271 …-> decltype( views::repeat(*__range.__value_, ranges::distance(__range) - std::min<_Dist>(ran… 272 …{ return views::repeat(*__range.__value_, ranges::distance(__range) - std::min<_Dist>(ran…
|
| /freebsd/contrib/llvm-project/libcxx/include/__format/ |
| H A D | format_arg.h | 107 return std::invoke(std::forward<_Visitor>(__vis), __arg.__value_.__monostate_); in decltype() 109 return std::invoke(std::forward<_Visitor>(__vis), __arg.__value_.__boolean_); in decltype() 111 return std::invoke(std::forward<_Visitor>(__vis), __arg.__value_.__char_type_); in decltype() 113 return std::invoke(std::forward<_Visitor>(__vis), __arg.__value_.__int_); in decltype() 115 return std::invoke(std::forward<_Visitor>(__vis), __arg.__value_.__long_long_); in decltype() 118 return std::invoke(std::forward<_Visitor>(__vis), __arg.__value_.__i128_); in decltype() 123 return std::invoke(std::forward<_Visitor>(__vis), __arg.__value_.__unsigned_); in decltype() 125 return std::invoke(std::forward<_Visitor>(__vis), __arg.__value_.__unsigned_long_long_); in decltype() 128 return std::invoke(std::forward<_Visitor>(__vis), __arg.__value_.__u128_); in decltype() 133 return std::invoke(std::forward<_Visitor>(__vis), __arg.__value_.__float_); in decltype() [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/ |
| H A D | utils.h | |
| H A D | unseq_backend_simd.h | |
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__iterator/ |
| H A D | istream_iterator.h | 45 _Tp __value_; variable 48 _LIBCPP_HIDE_FROM_ABI istream_iterator() : __in_stream_(nullptr), __value_() {} in istream_iterator() 50 if (!(*__in_stream_ >> __value_)) in istream_iterator() 54 _LIBCPP_HIDE_FROM_ABI const _Tp& operator*() const { return __value_; } 57 if (!(*__in_stream_ >> __value_))
|
| /freebsd/contrib/llvm-project/libcxx/include/__iterator/ |
| H A D | istream_iterator.h | 49 _Tp __value_; variable 52 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR istream_iterator() : __in_stream_(nullptr), __value_() {} in istream_iterator() 57 if (!(*__in_stream_ >> __value_)) in istream_iterator() 64 _LIBCPP_HIDE_FROM_ABI const _Tp& operator*() const { return __value_; } 67 if (!(*__in_stream_ >> __value_))
|
| H A D | common_iterator.h | 55 return std::addressof(__value_); 57 iter_value_t<_Iter> __value_; member 61 …_HIDE_FROM_ABI constexpr const iter_value_t<_Iter>& operator*() const noexcept { return __value_; } 62 iter_value_t<_Iter> __value_; member
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__memory/ |
| H A D | compressed_pair.h | 49 _LIBCPP_HIDE_FROM_ABI explicit __compressed_pair_elem(__value_init_tag) : __value_() {} in __compressed_pair_elem() 52 …_LIBCPP_HIDE_FROM_ABI explicit __compressed_pair_elem(_Up&& __u) : __value_(std::forward<_Up>(__u)… in __compressed_pair_elem() 54 _LIBCPP_HIDE_FROM_ABI reference __get() _NOEXCEPT { return __value_; } in __get() 55 _LIBCPP_HIDE_FROM_ABI const_reference __get() const _NOEXCEPT { return __value_; } in __get() 58 _Tp __value_;
|
| /freebsd/contrib/llvm-project/libcxx/include/__chrono/ |
| H A D | leap_second.h | 41 : __date_(__date), __value_(__value) {} in leap_second() 48 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr seconds value() const noexcept { return __value_; } in value() 52 seconds __value_; variable
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | __tree | 583 __node_value_type __value_; 585 _LIBCPP_HIDE_FROM_ABI __node_value_type& __get_value() { return __value_; } 615 __alloc_traits::destroy(__na_, std::addressof(__p->__value_)); 656 _LIBCPP_HIDE_FROM_ABI reference operator*() const { return __get_np()->__value_; } 657 …BI pointer operator->() const { return pointer_traits<pointer>::pointer_to(__get_np()->__value_); } 736 _LIBCPP_HIDE_FROM_ABI reference operator*() const { return __get_np()->__value_; } 737 …BI pointer operator->() const { return pointer_traits<pointer>::pointer_to(__get_np()->__value_); } 1334 __assign_value(__cache.__get()->__value_, *__first); 1420 __assign_value(__cache.__get()->__value_, std::move(__t.remove(__t.begin())->__value_)); 1426 __insert_multi_from_orphaned_node(__e, std::move(__t.remove(__t.begin())->__value_)); [all …]
|
| H A D | tuple | 311 _Hp __value_; 316 …_ABI constexpr __tuple_leaf() noexcept(is_nothrow_default_constructible<_Hp>::value) : __value_() { 321 …_LIBCPP_HIDE_FROM_ABI constexpr __tuple_leaf(integral_constant<int, 0>, const _Alloc&) : __value_(… 327 : __value_(allocator_arg_t(), __a) { 332 …IDE_FROM_ABI constexpr __tuple_leaf(integral_constant<int, 2>, const _Alloc& __a) : __value_(__a) { 341 : __value_(std::forward<_Tp>(__t)) { 349 : __value_(std::forward<_Tp>(__t)) { 357 : __value_(allocator_arg_t(), __a, std::forward<_Tp>(__t)) { 364 : __value_(std::forward<_Tp>(__t), __a) { 383 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 _Hp& get() _NOEXCEPT { return __value_; } [all …]
|
| H A D | future | 591 _Up __value_; 609 reinterpret_cast<_Rp*>(std::addressof(__value_))->~_Rp(); 619 ::new ((void*)std::addressof(__value_)) _Rp(std::forward<_Arg>(__arg)); 630 ::new ((void*)std::addressof(__value_)) _Rp(std::forward<_Arg>(__arg)); 641 return std::move(*reinterpret_cast<_Rp*>(std::addressof(__value_))); 650 return *reinterpret_cast<_Rp*>(std::addressof(__value_)); 659 _Up __value_; 680 __value_ = std::addressof(__arg); 690 __value_ = std::addressof(__arg); 701 return *__value_; [all …]
|
| H A D | optional | 402 __raw_type* __value_; 420 _LIBCPP_HIDE_FROM_ABI constexpr __optional_storage_base() noexcept : __value_(nullptr) {} 424 : __value_(std::addressof(__uarg)) { 430 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void reset() noexcept { __value_ = nullptr; } 432 _LIBCPP_HIDE_FROM_ABI constexpr bool has_value() const noexcept { return __value_ != nullptr; } 434 _LIBCPP_HIDE_FROM_ABI constexpr value_type& __get() const& noexcept { return *__value_; } 436 …ABI constexpr value_type&& __get() const&& noexcept { return std::forward<value_type>(*__value_); } 444 __value_ = std::addressof(__val); 457 *__value_ = std::forward<_That>(__opt).__get();
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/ |
| H A D | __tree | 664 __node_value_type __value_; 666 _LIBCPP_HIDE_FROM_ABI _Tp& __get_value() { return __value_; } 697 __alloc_traits::destroy(__na_, _NodeTypes::__get_ptr(__p->__value_)); 726 _LIBCPP_HIDE_FROM_ABI reference operator*() const { return __get_np()->__value_; } 727 …BI pointer operator->() const { return pointer_traits<pointer>::pointer_to(__get_np()->__value_); } 804 _LIBCPP_HIDE_FROM_ABI reference operator*() const { return __get_np()->__value_; } 805 …BI pointer operator->() const { return pointer_traits<pointer>::pointer_to(__get_np()->__value_); } 1368 __cache.__get()->__value_ = *__first; 1447 __cache.__get()->__value_ = std::move(__t.remove(__t.begin())->__value_); 1453 __insert_multi(__e, _NodeTypes::__move(__t.remove(__t.begin())->__value_)); [all …]
|
| H A D | future | 536 _Up __value_; 554 reinterpret_cast<_Rp*>(&__value_)->~_Rp(); 564 ::new ((void*)&__value_) _Rp(std::forward<_Arg>(__arg)); 575 ::new ((void*)&__value_) _Rp(std::forward<_Arg>(__arg)); 586 return std::move(*reinterpret_cast<_Rp*>(&__value_)); 595 return *reinterpret_cast<_Rp*>(&__value_); 604 _Up __value_; 625 __value_ = std::addressof(__arg); 635 __value_ = std::addressof(__arg); 646 return *__value_; [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__algorithm/ |
| H A D | find.h | 154 const _Tp& __value_; member 156 _LIBCPP_HIDE_FROM_ABI __find_segment(const _Tp& __value) : __value_(__value) {} in __find_segment() 160 return std::__find(__first, __last, __value_, __proj); in operator()
|
| /freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
| H A D | find.h | 160 const _Tp& __value_; member 162 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR __find_segment(const _Tp& __value) : __value_(__value) {} in __find_segment() 167 return std::__find(__first, __last, __value_, __proj); in operator()
|
| /freebsd/contrib/llvm-project/libcxx/include/__memory/ |
| H A D | uses_allocator_construction.h | 162 _Type& __value_; 164 …N constexpr operator _PairMutable() const { return __do_construct(std::forward<_Type>(__value_)); }
|