Home
last modified time | relevance | path

Searched refs:_Base (Results 1 – 15 of 15) sorted by relevance

/freebsd-14.2/contrib/llvm-project/libcxx/include/__ranges/
H A Delements_view.h176 iterator_t<_Base> __current_ = iterator_t<_Base>();
228 requires forward_range<_Base>
236 requires bidirectional_range<_Base>
243 requires bidirectional_range<_Base>
251 requires random_access_range<_Base>
258 requires random_access_range<_Base>
265 requires random_access_range<_Base>
277 requires random_access_range<_Base>
301 requires random_access_range<_Base> && three_way_comparable<iterator_t<_Base>>
325 requires sized_sentinel_for<iterator_t<_Base>, iterator_t<_Base>>
[all …]
H A Dtransform_view.h190 iterator_t<_Base> __current_ = iterator_t<_Base>();
227 requires forward_range<_Base>
235 requires bidirectional_range<_Base>
242 requires bidirectional_range<_Base>
250 requires random_access_range<_Base>
257 requires random_access_range<_Base>
265 requires random_access_range<_Base>
277 requires random_access_range<_Base>
301 requires random_access_range<_Base> && three_way_comparable<iterator_t<_Base>>
325 requires sized_sentinel_for<iterator_t<_Base>, iterator_t<_Base>>
[all …]
H A Djoin_view.h160 sentinel_t<_Base> __end_ = sentinel_t<_Base>();
195 using _Outer = iterator_t<_Base>;
228 if constexpr (forward_range<_Base>) {
236 if constexpr (forward_range<_Base>) {
244 requires forward_range<_Base>
250 requires(!forward_range<_Base>)
256 requires forward_range<_Base>
261 …_If< __ref_is_glvalue && bidirectional_range<_Base> && bidirectional_range<range_reference_t<_Base
264 _If< __ref_is_glvalue && forward_range<_Base> && forward_range<range_reference_t<_Base>>,
303 requires __ref_is_glvalue && forward_range<_Base> && forward_range<range_reference_t<_Base>>
[all …]
H A Dlazy_split_view.h150 using _Base = __maybe_const<_Const, _View>;
180 using difference_type = range_difference_t<_Base>;
197 requires(!forward_range<_Base>)
201 requires forward_range<_Base>
250 if constexpr (forward_range<_Base>) {
261 requires forward_range<_Base>
286 using _Base = __maybe_const<_Const, _View>;
337 using value_type = range_value_t<_Base>;
356 if constexpr (!forward_range<_Base>) {
367 if constexpr (forward_range<_Base>) {
[all …]
H A Dtake_while_view.h106 using _Base = __maybe_const<_Const, _View>; variable
108 sentinel_t<_Base> __end_ = sentinel_t<_Base>();
116 _LIBCPP_HIDE_FROM_ABI constexpr explicit __sentinel(sentinel_t<_Base> __end, const _Pred* __pred) in __sentinel()
120 requires _Const && convertible_to<sentinel_t<_View>, sentinel_t<_Base>> in __sentinel()
123 _LIBCPP_HIDE_FROM_ABI constexpr sentinel_t<_Base> base() const { return __end_; } in base()
125 …_LIBCPP_HIDE_FROM_ABI friend constexpr bool operator==(const iterator_t<_Base>& __x, const __senti…
130 requires sentinel_for<sentinel_t<_Base>, iterator_t<__maybe_const<_OtherConst, _View>>>
H A Dtake_view.h165 using _Base = __maybe_const<_Const, _View>; variable
168 _LIBCPP_NO_UNIQUE_ADDRESS sentinel_t<_Base> __end_ = sentinel_t<_Base>();
176 …_LIBCPP_HIDE_FROM_ABI constexpr explicit __sentinel(sentinel_t<_Base> __end) : __end_(std::move(__… in __sentinel()
179 requires _Const && convertible_to<sentinel_t<_View>, sentinel_t<_Base>> in __sentinel()
182 _LIBCPP_HIDE_FROM_ABI constexpr sentinel_t<_Base> base() const { return __end_; } in base()
189 requires sentinel_for<sentinel_t<_Base>, iterator_t<__maybe_const<_OtherConst, _View>>>
/freebsd-14.2/contrib/llvm-project/libcxx/include/__format/
H A Dformatter_string.h63 using _Base = __formatter_string<_CharT>;
69 …__format_spec::__parsed_specifications<_CharT> __specs = _Base::__parser_.__get_parsed_std_specifi…
71 if (_Base::__parser_.__type_ == __format_spec::__type::__debug)
100 using _Base = formatter<const _CharT*, _CharT>;
104 return _Base::format(__str, __ctx);
111 using _Base = __formatter_string<_CharT>;
116 return _Base::format(basic_string_view<_CharT>(__str, _Size), __ctx);
124 using _Base = __formatter_string<_CharT>;
130 return _Base::format(basic_string_view<_CharT>(__str.data(), __str.size()), __ctx);
137 using _Base = __formatter_string<_CharT>;
[all …]
H A Dformatter_integral.h173 template <unsigned_integral _Tp, size_t _Base>
175 requires(_Base == 2) in __buffer_size()
182 template <unsigned_integral _Tp, size_t _Base>
184 requires(_Base == 8) in __buffer_size()
193 template <unsigned_integral _Tp, size_t _Base>
195 requires(_Base == 10) in __buffer_size()
202 template <unsigned_integral _Tp, size_t _Base>
204 requires(_Base == 16) in __buffer_size()
H A Dbuffer.h493 using _Base = __format_to_n_buffer_base<_OutIt, _CharT, __enable_direct_output<_OutIt, _CharT>>;
498 : _Base(std::move(__out_it), __max_size) {}
/freebsd-14.2/contrib/llvm-project/libcxx/include/__chrono/
H A Dformatter.h589 using _Base = __formatter_chrono<_CharT>;
600 using _Base = __formatter_chrono<_CharT>;
611 using _Base = __formatter_chrono<_CharT>;
623 using _Base = __formatter_chrono<_CharT>;
645 using _Base = __formatter_chrono<_CharT>;
656 using _Base = __formatter_chrono<_CharT>;
667 using _Base = __formatter_chrono<_CharT>;
678 using _Base = __formatter_chrono<_CharT>;
689 using _Base = __formatter_chrono<_CharT>;
700 using _Base = __formatter_chrono<_CharT>;
[all …]
/freebsd-14.2/contrib/llvm-project/libcxx/include/__charconv/
H A Dto_chars_integral.h111 template <unsigned _Base>
225 template <unsigned _Base, typename _Tp, __enable_if_t<(sizeof(_Tp) >= sizeof(unsigned)), int> = 0>
227 return __itoa::__integral<_Base>::__width(__value);
230 template <unsigned _Base, typename _Tp, __enable_if_t<(sizeof(_Tp) < sizeof(unsigned)), int> = 0>
232 return std::__to_chars_integral_width<_Base>(static_cast<unsigned>(__value));
235 template <unsigned _Base, typename _Tp, __enable_if_t<(sizeof(_Tp) >= sizeof(unsigned)), int> = 0>
238 return __itoa::__integral<_Base>::__to_chars(__first, __last, __value);
241 template <unsigned _Base, typename _Tp, __enable_if_t<(sizeof(_Tp) < sizeof(unsigned)), int> = 0>
244 return std::__to_chars_integral<_Base>(__first, __last, static_cast<unsigned>(__value));
/freebsd-14.2/contrib/llvm-project/libcxx/include/__atomic/
H A Dcxx_atomic_impl.h809 typename _Base = typename conditional<__libcpp_is_always_lock_free<_Tp>::__value,
813 template <typename _Tp, typename _Base = __cxx_atomic_base_impl<_Tp> >
815 struct __cxx_atomic_impl : public _Base {
819 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR explicit __cxx_atomic_impl(_Tp __value) _NOEXCEPT : _Base(…
/freebsd-14.2/contrib/llvm-project/libcxx/include/
H A Dforward_list317 typedef __begin_node_of<_Tp, _VoidPtr> _Base;
318 typedef typename _Base::pointer _NodePtr;
340 _LIBCPP_HIDE_FROM_ABI explicit __forward_list_node(_NodePtr __next) : _Base(__next) {}
H A D__hash_table109 …using _Base = __hash_node_base<__rebind_pointer_t<_VoidPtr, __hash_node<_Tp, _VoidPtr> > …
110 using __next_pointer = typename _Base::__next_pointer;
134 …_LIBCPP_HIDE_FROM_ABI explicit __hash_node(__next_pointer __next, size_t __hash) : _Base(__next), …
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DVOPInstructions.td1661 let FilterClass = "VOPC64_" # Format # "_Base";