Home
last modified time | relevance | path

Searched refs:__args (Results 1 – 25 of 49) sorted by relevance

12

/freebsd-12-stable/contrib/llvm-project/libcxx/include/__functional/
Dperfect_forward.h36 _LIBCPP_INLINE_VISIBILITY constexpr auto operator()(_Args&&... __args) &
37 … noexcept(noexcept(_Op::__call(_VSTD::get<_Idxs>(__bound_)..., _VSTD::forward<_Args>(__args)...)))
38 -> decltype( _Op::__call(_VSTD::get<_Idxs>(__bound_)..., _VSTD::forward<_Args>(__args)...))
39 … {return _Op::__call(_VSTD::get<_Idxs>(__bound_)..., _VSTD::forward<_Args>(__args)...);}
42 _LIBCPP_INLINE_VISIBILITY constexpr auto operator()(_Args&&... __args) const&
43 … noexcept(noexcept(_Op::__call(_VSTD::get<_Idxs>(__bound_)..., _VSTD::forward<_Args>(__args)...)))
44 -> decltype( _Op::__call(_VSTD::get<_Idxs>(__bound_)..., _VSTD::forward<_Args>(__args)...))
45 … {return _Op::__call(_VSTD::get<_Idxs>(__bound_)..., _VSTD::forward<_Args>(__args)...);}
48 _LIBCPP_INLINE_VISIBILITY constexpr auto operator()(_Args&&... __args) &&
50 _VSTD::forward<_Args>(__args)...)))
[all …]
Dbind_front.h30 constexpr static auto __call(_Args&&... __args)
31 noexcept(noexcept(_VSTD::invoke(_VSTD::forward<_Args>(__args)...)))
32 -> decltype( _VSTD::invoke(_VSTD::forward<_Args>(__args)...))
33 { return _VSTD::invoke(_VSTD::forward<_Args>(__args)...); }
42 constexpr auto bind_front(_Fn&& __f, _Args&&... __args) in bind_front() argument
45 _VSTD::forward<_Args>(__args)...); in bind_front()
Dinvoke.h29 static _Ret __call(_Args&&... __args) { in __call()
30 return _VSTD::__invoke(_VSTD::forward<_Args>(__args)...); in __call()
60 static void __call(_Args&&... __args) {
61 _VSTD::__invoke(_VSTD::forward<_Args>(__args)...);
90 invoke(_Fn&& __f, _Args&&... __args)
93 return _VSTD::__invoke(_VSTD::forward<_Fn>(__f), _VSTD::forward<_Args>(__args)...);
Dnot_fn.h29 static _LIBCPP_CONSTEXPR_AFTER_CXX17 auto __call(_Args&&... __args)
30 noexcept(noexcept(!_VSTD::invoke(_VSTD::forward<_Args>(__args)...)))
31 -> decltype( !_VSTD::invoke(_VSTD::forward<_Args>(__args)...))
32 { return !_VSTD::invoke(_VSTD::forward<_Args>(__args)...); }
Dbind.h255 _Args&& __args)
257 return _VSTD::__invoke(__f, _VSTD::__mu(_VSTD::get<_Indx>(__bound_args), __args)...);
290 operator()(_Args&& ...__args)
293 tuple<_Args&&...>(_VSTD::forward<_Args>(__args)...));
299 operator()(_Args&& ...__args) const
302 tuple<_Args&&...>(_VSTD::forward<_Args>(__args)...));
340 operator()(_Args&& ...__args)
343 return _Invoker::__call(static_cast<base&>(*this), _VSTD::forward<_Args>(__args)...);
354 operator()(_Args&& ...__args) const
357 … return _Invoker::__call(static_cast<base const&>(*this), _VSTD::forward<_Args>(__args)...);
Dmem_fn.h46 operator() (_ArgTypes&&... __args) const { in operator()
47 return _VSTD::__invoke(__f_, _VSTD::forward<_ArgTypes>(__args)...); in operator()
/freebsd-12-stable/contrib/llvm-project/libcxx/include/__memory/
Dallocator_arg_t.h53 …construct_impl (integral_constant<int, 0>, _Tp *__storage, const _Allocator &, _Args &&... __args ) in __user_alloc_construct_impl() argument
55 new (__storage) _Tp (_VSTD::forward<_Args>(__args)...); in __user_alloc_construct_impl()
61 …struct_impl (integral_constant<int, 1>, _Tp *__storage, const _Allocator &__a, _Args &&... __args ) in __user_alloc_construct_impl() argument
63 new (__storage) _Tp (allocator_arg, __a, _VSTD::forward<_Args>(__args)...); in __user_alloc_construct_impl()
69 …struct_impl (integral_constant<int, 2>, _Tp *__storage, const _Allocator &__a, _Args &&... __args ) in __user_alloc_construct_impl() argument
71 new (__storage) _Tp (_VSTD::forward<_Args>(__args)..., __a); in __user_alloc_construct_impl()
Dcompressed_pair.h59 __compressed_pair_elem(piecewise_construct_t, tuple<_Args...> __args, in __compressed_pair_elem()
61 : __value_(_VSTD::forward<_Args>(_VSTD::get<_Indexes>(__args))...) {} in __compressed_pair_elem()
98 __compressed_pair_elem(piecewise_construct_t, tuple<_Args...> __args,
100 : __value_type(_VSTD::forward<_Args>(_VSTD::get<_Indexes>(__args))...) {}
Dconstruct_at.h35 constexpr _Tp* construct_at(_Tp* __location, _Args&& ...__args) { in construct_at() argument
37 return ::new ((void*)__location) _Tp(_VSTD::forward<_Args>(__args)...); in construct_at()
Dallocator.h153 void construct(_Up* __p, _Args&&... __args) {
154 ::new ((void*)__p) _Up(_VSTD::forward<_Args>(__args)...);
231 void construct(_Up* __p, _Args&&... __args) {
232 ::new ((void*)__p) _Up(_VSTD::forward<_Args>(__args)...);
Dallocator_traits.h288 static void construct(allocator_type& __a, _Tp* __p, _Args&&... __args) {
290 __a.construct(__p, _VSTD::forward<_Args>(__args)...);
296 static void construct(allocator_type&, _Tp* __p, _Args&&... __args) {
298 _VSTD::construct_at(__p, _VSTD::forward<_Args>(__args)...);
300 ::new ((void*)__p) _Tp(_VSTD::forward<_Args>(__args)...);
/freebsd-12-stable/contrib/libstdc++/config/locale/generic/
Dc_locale.h76 va_list __args; in __convert_from_v() local
77 va_start(__args, __fmt); in __convert_from_v()
80 const int __ret = std::vsnprintf(__out, __size, __fmt, __args); in __convert_from_v()
82 const int __ret = std::vsprintf(__out, __fmt, __args); in __convert_from_v()
85 va_end(__args); in __convert_from_v()
/freebsd-12-stable/contrib/libstdc++/config/locale/gnu/
Dc_locale.h90 va_list __args; in __convert_from_v() local
91 va_start(__args, __fmt); in __convert_from_v()
94 const int __ret = std::vsnprintf(__out, __size, __fmt, __args); in __convert_from_v()
96 const int __ret = std::vsprintf(__out, __fmt, __args); in __convert_from_v()
99 va_end(__args); in __convert_from_v()
/freebsd-12-stable/contrib/llvm-project/libcxx/include/experimental/
D__memory80 …construct_impl (integral_constant<int, 0>, _Tp *__storage, const _Allocator &, _Args &&... __args )
82 new (__storage) _Tp (_VSTD::forward<_Args>(__args)...);
88 …struct_impl (integral_constant<int, 1>, _Tp *__storage, const _Allocator &__a, _Args &&... __args )
90 new (__storage) _Tp (allocator_arg, __a, _VSTD::forward<_Args>(__args)...);
96 …struct_impl (integral_constant<int, 2>, _Tp *__storage, const _Allocator &__a, _Args &&... __args )
98 new (__storage) _Tp (_VSTD::forward<_Args>(__args)..., __a);
104 _Tp * __store, const _Alloc & __a, _Args &&... __args)
108 , __store, __a, _VSTD::forward<_Args>(__args)...
/freebsd-12-stable/contrib/llvm-project/libcxx/include/
Dany221 explicit any(in_place_type_t<_ValueType>, _Args&&... __args);
230 explicit any(in_place_type_t<_ValueType>, initializer_list<_Up>, _Args&&... __args);
371 static _Tp& __create(any & __dest, _Args&&... __args) {
376 _ATraits::construct(__a, __ret, _VSTD::forward<_Args>(__args)...);
454 static _Tp& __create(any & __dest, _Args&&... __args) {
461 _ATraits::construct(__a, __ret, _VSTD::forward<_Args>(__args)...);
523 any::any(in_place_type_t<_ValueType>, _Args&&... __args) {
524 __any_imp::_Handler<_Tp>::__create(*this, _VSTD::forward<_Args>(__args)...);
528 any::any(in_place_type_t<_ValueType>, initializer_list<_Up> __il, _Args&&... __args) {
529 __any_imp::_Handler<_Tp>::__create(*this, __il, _VSTD::forward<_Args>(__args)...);
[all …]
Dnew233 void* __libcpp_operator_new(_Args ...__args) {
235 return __builtin_operator_new(__args...);
237 return ::operator new(__args...);
243 void __libcpp_operator_delete(_Args ...__args) {
245 __builtin_operator_delete(__args...);
247 ::operator delete(__args...);
266 void __do_deallocate_handle_size(void *__ptr, size_t __size, _Args ...__args) {
269 return __libcpp_operator_delete(__ptr, __args...);
271 return __libcpp_operator_delete(__ptr, __size, __args...);
Dvariant711 explicit constexpr __alt(in_place_t, _Args&&... __args)
712 : __value(_VSTD::forward<_Args>(__args)...) {}
735 explicit constexpr __union(in_place_index_t<0>, _Args&&... __args) \
736 : __head(in_place, _VSTD::forward<_Args>(__args)...) {} \
740 explicit constexpr __union(in_place_index_t<_Ip>, _Args&&... __args) \
741 : __tail(in_place_index<_Ip - 1>, _VSTD::forward<_Args>(__args)...) {} \
776 explicit constexpr __base(in_place_index_t<_Ip>, _Args&&... __args)
778 __data(in_place_index<_Ip>, _VSTD::forward<_Args>(__args)...),
878 static _Tp& __construct_alt(__alt<_Ip, _Tp>& __a, _Args&&... __args) {
880 __alt<_Ip, _Tp>(in_place, _VSTD::forward<_Args>(__args)...);
[all …]
Doptional237 constexpr explicit __optional_destruct_base(in_place_t, _Args&&... __args)
238 : __val_(_VSTD::forward<_Args>(__args)...),
272 constexpr explicit __optional_destruct_base(in_place_t, _Args&&... __args)
273 : __val_(_VSTD::forward<_Args>(__args)...),
322 _LIBCPP_CONSTEXPR_AFTER_CXX17 void __construct(_Args&&... __args)
326 _VSTD::construct_at(_VSTD::addressof(this->__val_), _VSTD::forward<_Args>(__args)...);
328 ::new ((void*)_VSTD::addressof(this->__val_)) value_type(_VSTD::forward<_Args>(__args)...);
706 constexpr explicit optional(_InPlaceT, _Args&&... __args)
707 : __base(in_place, _VSTD::forward<_Args>(__args)...) {}
713 constexpr explicit optional(in_place_t, initializer_list<_Up> __il, _Args&&... __args)
[all …]
Dscoped_allocator501 void construct(_Tp* __p, _Args&& ...__args)
503 __p, _VSTD::forward<_Args>(__args)...);}
581 void __construct(integral_constant<int, 0>, _Tp* __p, _Args&& ...__args)
588 _VSTD::forward<_Args>(__args)...
594 void __construct(integral_constant<int, 1>, _Tp* __p, _Args&& ...__args)
601 _VSTD::forward<_Args>(__args)...
607 void __construct(integral_constant<int, 2>, _Tp* __p, _Args&& ...__args)
614 _VSTD::forward<_Args>(__args)...,
Dfuture1653 virtual _Rp operator()(_ArgTypes&& ... __args);
1942 void operator()(_ArgTypes... __args);
1943 void make_ready_at_thread_exit(_ArgTypes... __args);
1950 packaged_task<_Rp(_ArgTypes...)>::operator()(_ArgTypes... __args)
1960 __p_.set_value(__f_(_VSTD::forward<_ArgTypes>(__args)...));
1972 packaged_task<_Rp(_ArgTypes...)>::make_ready_at_thread_exit(_ArgTypes... __args)
1982 __p_.set_value_at_thread_exit(__f_(_VSTD::forward<_ArgTypes>(__args)...));
2071 void operator()(_ArgTypes... __args);
2072 void make_ready_at_thread_exit(_ArgTypes... __args);
2079 packaged_task<void(_ArgTypes...)>::operator()(_ArgTypes... __args)
[all …]
Dstack204 decltype(auto) emplace(_Args&&... __args)
205 { return c.emplace_back(_VSTD::forward<_Args>(__args)...);}
207 void emplace(_Args&&... __args)
208 { c.emplace_back(_VSTD::forward<_Args>(__args)...);}
Dcharconv467 __sign_combinator(_It __first, _It __last, _Tp& __value, _Fn __f, _Ts... __args)
473 auto __r = __f(__neg ? __first + 1 : __first, __last, __x, __args...);
537 _Ts... __args)
547 if (__p == __last || !__in_pattern(*__p, __args...))
558 auto __r = __f(__p, __last, __value, __args...);
563 if (!__in_pattern(*__r.ptr, __args...))
D__tree1144 __emplace_unique_key_args(_Key const&, _Args&&... __args);
1150 pair<iterator, bool> __emplace_unique_impl(_Args&&... __args);
1153 iterator __emplace_hint_unique_impl(const_iterator __p, _Args&&... __args);
1156 iterator __emplace_multi(_Args&&... __args);
1159 iterator __emplace_hint_multi(const_iterator __p, _Args&&... __args);
1180 pair<iterator, bool> __emplace_unique(_Args&&... __args) {
1181 return __emplace_unique_impl(_VSTD::forward<_Args>(__args)...);
1225 iterator __emplace_hint_unique(const_iterator __p, _Args&&... __args) {
1226 return __emplace_hint_unique_impl(__p, _VSTD::forward<_Args>(__args)...);
1450 __node_holder __construct_node(_Args&& ...__args);
[all …]
/freebsd-12-stable/contrib/llvm-project/libcxx/include/__ranges/
Dcopyable_box.h53 constexpr explicit __copyable_box(in_place_t, _Args&& ...__args) in __copyable_box() argument
55 : __val_(in_place, _VSTD::forward<_Args>(__args)...) in __copyable_box()
124 constexpr explicit __copyable_box(in_place_t, _Args&& ...__args) in __copyable_box() argument
126 : __val_(_VSTD::forward<_Args>(__args)...) in __copyable_box()
/freebsd-12-stable/stand/i386/btx/lib/
Dbtxcsu.S42 movl %eax,__args # pointer
49 .comm __args,4 # Client arguments

12