/freebsd/contrib/llvm-project/libcxx/include/__compare/ |
H A D | ordering.h | 46 _LIBCPP_HIDE_FROM_ABI explicit constexpr partial_ordering(_OrdResult __v) noexcept : __value_(_ValueT(__v)) {} 48 _LIBCPP_HIDE_FROM_ABI explicit constexpr partial_ordering(_NCmpResult __v) noexcept : __value_(_ValueT(__v)) {} 51 return __value_ != _ValueT(_NCmpResult::__unordered); 65 return __v.__is_ordered() && __v.__value_ == 0; 69 return __v.__is_ordered() && __v.__value_ < 0; 73 return __v.__is_ordered() && __v.__value_ <= 0; 77 return __v.__is_ordered() && __v.__value_ > 0; 81 return __v.__is_ordered() && __v.__value_ >= 0; 85 return __v.__is_ordered() && 0 < __v.__value_; 89 return __v.__is_ordered() && 0 <= __v.__value_; [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) { 64 __other.__value_.reset(); 69 __value_.reset(); in __non_propagating_cache() 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_ [all...] |
H A D | single_view.h | 44 _LIBCPP_NO_UNIQUE_ADDRESS __movable_box<_Tp> __value_; variable 55 : __value_(in_place, __t) { in single_view() 58 …_LIBCPP_HIDE_FROM_ABI constexpr explicit single_view(_Tp&& __t) : __value_(in_place, std::move(__t… in single_view() 63 : __value_{in_place, std::forward<_Args>(__args)...} {} in single_view() 77 _LIBCPP_HIDE_FROM_ABI constexpr _Tp* data() noexcept { return __value_.operator->(); } in data() 79 _LIBCPP_HIDE_FROM_ABI constexpr const _Tp* data() const noexcept { return __value_.operator->(); } in data()
|
H A D | repeat_view.h | 88 : __value_(in_place, __value), __bound_(__bound_sentinel) { 94 : __value_(in_place, std::move(__value)), __bound_(__bound_sentinel) { 103 : __value_(in_place, std::make_from_tuple<_Tp>(std::move(__value_args))), 110 …_HIDE_FROM_ABI constexpr __iterator begin() const { return __iterator(std::addressof(*__value_)); } 115 return __iterator(std::addressof(*__value_), __bound_); 127 _LIBCPP_NO_UNIQUE_ADDRESS __movable_box<_Tp> __value_; 144 : __value_(__value), __current_(__bound_sentinel) {} 154 _LIBCPP_HIDE_FROM_ABI constexpr const _Tp& operator*() const noexcept { return *__value_; } 224 const _Tp* __value_ = nullptr;
|
H A D | istream_view.h | 50 *__stream_ >> __value_; in begin() 58 _LIBCPP_NO_UNIQUE_ADDRESS _Val __value_ = _Val(); 79 *__parent_->__stream_ >> __parent_->__value_; 85 _LIBCPP_HIDE_FROM_ABI _Val& operator*() const { return __parent_->__value_; } 57 _LIBCPP_NO_UNIQUE_ADDRESS _Val __value_ = _Val(); global() variable
|
H A D | take_view.h | 312 …noexcept(noexcept(views::repeat(*__range.__value_, std::min<_Dist>(ranges::distance(__range), std:… 313 …-> decltype( views::repeat(*__range.__value_, std::min<_Dist>(ranges::distance(__range), std:… 314 …{ return views::repeat(*__range.__value_, std::min<_Dist>(ranges::distance(__range), std:… 323 noexcept(noexcept(views::repeat(*__range.__value_, static_cast<_Dist>(__n)))) 324 -> decltype( views::repeat(*__range.__value_, static_cast<_Dist>(__n))) 325 { 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 | 105 return std::invoke(std::forward<_Visitor>(__vis), __arg.__value_.__monostate_); in decltype() 107 return std::invoke(std::forward<_Visitor>(__vis), __arg.__value_.__boolean_); in decltype() 109 return std::invoke(std::forward<_Visitor>(__vis), __arg.__value_.__char_type_); in decltype() 111 return std::invoke(std::forward<_Visitor>(__vis), __arg.__value_.__int_); in decltype() 113 return std::invoke(std::forward<_Visitor>(__vis), __arg.__value_.__long_long_); in decltype() 116 return std::invoke(std::forward<_Visitor>(__vis), __arg.__value_.__i128_); in decltype() 121 return std::invoke(std::forward<_Visitor>(__vis), __arg.__value_.__unsigned_); in decltype() 123 return std::invoke(std::forward<_Visitor>(__vis), __arg.__value_.__unsigned_long_long_); in decltype() 126 return std::invoke(std::forward<_Visitor>(__vis), __arg.__value_.__u128_); in decltype() 131 return std::invoke(std::forward<_Visitor>(__vis), __arg.__value_.__float_); in decltype() [all …]
|
H A D | format_arg_store.h | 220 *__values++ = __arg.__value_; in __create_packed_storage()
|
/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/__iterator/ |
H A D | istream_iterator.h | 49 _Tp __value_; in istream_iterator() 52 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR istream_iterator() : __in_stream_(nullptr), __value_() {} 57 if (!(*__in_stream_ >> __value_)) in istream_iterator() 61 _LIBCPP_HIDE_FROM_ABI const _Tp& operator*() const { return __value_; } 64 if (!(*__in_stream_ >> __value_)) 47 _Tp __value_; global() variable
|
H A D | common_iterator.h | 53 return std::addressof(__value_); 55 iter_value_t<_Iter> __value_; member 59 …_HIDE_FROM_ABI constexpr const iter_value_t<_Iter>& operator*() const noexcept { return __value_; } 60 iter_value_t<_Iter> __value_; member
|
/freebsd/contrib/llvm-project/libcxx/include/__memory/ |
H A D | compressed_pair.h | 49 …P_HIDE_FROM_ABI _LIBCPP_CONSTEXPR explicit __compressed_pair_elem(__value_init_tag) : __value_() {} in __compressed_pair_elem() 53 : __value_(std::forward<_Up>(__u)) {} in __compressed_pair_elem() 59 : __value_(std::forward<_Args>(std::get<_Indices>(__args))...) {} in __compressed_pair_elem() 62 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 reference __get() _NOEXCEPT { return __value_;… in __get() 63 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR const_reference __get() const _NOEXCEPT { return __value_;… in __get() 66 _Tp __value_;
|
H A D | uses_allocator_construction.h | 196 _Type& __value_; in __uses_allocator_construction_args() member 198 …N constexpr operator _PairMutable() const { return __do_construct(std::forward<_Type>(__value_)); } in __uses_allocator_construction_args()
|
/freebsd/contrib/llvm-project/libcxx/include/__chrono/ |
H A D | leap_second.h | 41 : __date_(__date), __value_(__value) {} in leap_second() 48 …IBCPP_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 | 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_)); 740 _LIBCPP_HIDE_FROM_ABI reference operator*() const { return __get_np()->__value_; } 741 …BI pointer operator->() const { return pointer_traits<pointer>::pointer_to(__get_np()->__value_); } 823 _LIBCPP_HIDE_FROM_ABI reference operator*() const { return __get_np()->__value_; } 824 …BI pointer operator->() const { return pointer_traits<pointer>::pointer_to(__get_np()->__value_); } 1428 __cache.__get()->__value_ = *__first; 1509 __cache.__get()->__value_ = std::move(__t.remove(__t.begin())->__value_); 1515 __insert_multi(__e, _NodeTypes::__move(__t.remove(__t.begin())->__value_)); [all …]
|
H A D | future | 579 _Up __value_; 597 reinterpret_cast<_Rp*>(&__value_)->~_Rp(); 607 ::new ((void*)&__value_) _Rp(std::forward<_Arg>(__arg)); 618 ::new ((void*)&__value_) _Rp(std::forward<_Arg>(__arg)); 629 return std::move(*reinterpret_cast<_Rp*>(&__value_)); 638 return *reinterpret_cast<_Rp*>(&__value_); 647 _Up __value_; 668 __value_ = std::addressof(__arg); 678 __value_ = std::addressof(__arg); 689 return *__value_; [all …]
|
H A D | tuple | 301 _Hp __value_; 315 …_ABI constexpr __tuple_leaf() noexcept(is_nothrow_default_constructible<_Hp>::value) : __value_() { 320 …_LIBCPP_HIDE_FROM_ABI constexpr __tuple_leaf(integral_constant<int, 0>, const _Alloc&) : __value_(… 326 : __value_(allocator_arg_t(), __a) { 331 …IDE_FROM_ABI constexpr __tuple_leaf(integral_constant<int, 2>, const _Alloc& __a) : __value_(__a) { 340 : __value_(std::forward<_Tp>(__t)) { 348 : __value_(std::forward<_Tp>(__t)) { 356 : __value_(allocator_arg_t(), __a, std::forward<_Tp>(__t)) { 363 : __value_(std::forward<_Tp>(__t), __a) { 382 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 _Hp& get() _NOEXCEPT { return __value_; } [all …]
|
H A D | optional | 394 __raw_type* __value_; 412 _LIBCPP_HIDE_FROM_ABI constexpr __optional_storage_base() noexcept : __value_(nullptr) {} 416 : __value_(std::addressof(__uarg)) { 422 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void reset() noexcept { __value_ = nullptr; } 424 _LIBCPP_HIDE_FROM_ABI constexpr bool has_value() const noexcept { return __value_ != nullptr; } 426 _LIBCPP_HIDE_FROM_ABI constexpr value_type& __get() const& noexcept { return *__value_; } 428 …ABI constexpr value_type&& __get() const&& noexcept { return std::forward<value_type>(*__value_); } 436 __value_ = std::addressof(__val); 449 *__value_ = std::forward<_That>(__opt).__get();
|
H A D | map | 740 __alloc_traits::destroy(__na_, std::addressof(__p->__value_.__get_value().second)); 742 __alloc_traits::destroy(__na_, std::addressof(__p->__value_.__get_value().first)); 1506 __tree_.__insert_unique(__e.__i_, __m.__tree_.remove(__m.begin().__i_)->__value_.__move()); 1537 __node_traits::construct(__na, std::addressof(__h->__value_.__get_value().first), __k); 1539 __node_traits::construct(__na, std::addressof(__h->__value_.__get_value().second)); 1554 return __r->__value_.__get_value().second; 1565 return static_cast<__node_pointer>(__child)->__value_.__get_value().second; 1574 return static_cast<__node_pointer>(__child)->__value_.__get_value().second; 2085 …__tree_.__insert_multi(__e.__i_, std::move(__m.__tree_.remove(__m.begin().__i_)->__value_.__move()…
|
H A D | forward_list | 324 _Tp __value_; 328 _LIBCPP_HIDE_FROM_ABI _Tp& __get_value() { return __value_; }
|
H A D | set | 947 insert(__e, std::move(__s.__tree_.remove(__s.begin())->__value_)); 1406 insert(__e, std::move(__s.__tree_.remove(__s.begin())->__value_));
|
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
H A D | find.h | 157 const _Tp& __value_; member 159 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR __find_segment(const _Tp& __value) : __value_(__value) {} in __find_segment() 164 return std::__find(__first, __last, __value_, __proj); in operator()
|