Home
last modified time | relevance | path

Searched refs:__t (Results 1 – 25 of 46) sorted by relevance

12

/openbmc/sdbusplus/include/sdbusplus/async/stdexec/
H A Dasync_scope.hpp76 using _Receiver = stdexec::__t<_ReceiverId>;
78 struct __t : __task struct
82 explicit __t(const __impl* __scope, _Constrained&& __sndr, in __t() function
106 stdexec::start(static_cast<__t*>(__self)->__op_); in __notify_waiter()
117 using _Constrained = stdexec::__t<_ConstrainedId>;
119 struct __t struct
126 stdexec::__t<__when_empty_op<__cvref_id<_Self, _Constrained>,
129 template <__decays_to<__t> _Self, receiver _Receiver>
139 template <__decays_to<__t> _Self, class... _Env>
155 stdexec::__t<__when_empty_sender<__id<__decay_t<_Constrained>>>>;
[all …]
H A Dany_sender_of.hpp301 class __t;
309 class __t : __immovable class
326 return &__storage_vtbl<__t, __decay_t<_Tp>, _Vtable, __with_delete>; in __get_vtable_of_type()
332 __t() = default;
334 template <__not_decays_to<__t> _Tp>
337 __t(_Tp&& __object) : __vtable_{__get_vtable_of_type<_Tp>()} in __t() function in exec::__any::__immovable_storage::__t
353 __t(std::in_place_type_t<_Tp>, _Args&&... __args) : in __t() function in exec::__any::__immovable_storage::__t
366 ~__t() in ~__t()
429 __t& __self) noexcept in STDEXEC_MEMFN_DECL()
460 class __storage<_Vtable, _Allocator, _Copyable, _InlineSize, _Alignment>::__t : class in exec::__any::__storage
[all …]
H A Denv.hpp85 using _Default = stdexec::__t<_DefaultId>;
86 using _Receiver = stdexec::__t<_ReceiverId>;
88 struct __t : __immovable struct
121 using __operation_t = __t<__operation<_Tag, __id<_Default>, __id<_Receiver>>>;
127 using __t = __sender; typedef
H A Dat_coroutine_exit.hpp45 struct __t struct
80 using __receiver = __t<__receiver_id<_Rec>>;
90 struct __t struct
121 using __sender = __t<__sender_id<__decay_t<_Sender>>>;
/openbmc/linux/arch/arm/include/asm/
H A Duaccess.h252 #define __get_user_err(x, ptr, err, __t) \ argument
261 case 1: __get_user_asm_byte(__gu_val, __gu_addr, err, __t); break; \
262 case 2: __get_user_asm_half(__gu_val, __gu_addr, err, __t); break; \
263 case 4: __get_user_asm_word(__gu_val, __gu_addr, err, __t); break; \
289 #define __get_user_asm_byte(x, addr, err, __t) \ argument
290 __get_user_asm(x, addr, err, "ldrb" __t)
294 #define __get_user_asm_half(x, addr, err, __t) \ argument
295 __get_user_asm(x, addr, err, "ldrh" __t)
300 #define __get_user_asm_half(x, __gu_addr, err, __t) \ argument
303 __get_user_asm_byte(__b1, __gu_addr, err, __t); \
[all …]
/openbmc/linux/arch/powerpc/kernel/
H A Dsignal.h52 struct task_struct *__t = task; \
57 unsafe_put_user(__t->thread.TS_FPR(i), &buf[i], label); \
58 unsafe_put_user(__t->thread.fp_state.fpscr, &buf[i], label); \
62 struct task_struct *__t = task; \
67 unsafe_put_user(__t->thread.fp_state.fpr[i][TS_VSRLOWOFFSET], \
72 struct task_struct *__t = task; \
77 unsafe_get_user(__t->thread.TS_FPR(i), &buf[i], label); \
78 unsafe_get_user(__t->thread.fp_state.fpscr, &buf[i], label); \
82 struct task_struct *__t = task; \
87 unsafe_get_user(__t->thread.fp_state.fpr[i][TS_VSRLOWOFFSET], \
[all …]
/openbmc/sdbusplus/include/sdbusplus/async/stdexec/__detail/
H A D__connect_awaitable.hpp104 struct __t : __operation_base struct
106 using promise_type = stdexec::__t<__promise<_ReceiverId>>; argument
114 using _Receiver = stdexec::__t<_ReceiverId>;
116 struct __t : __promise_base struct
121 __t(auto&&, _Receiver&& __rcvr) noexcept : __rcvr_(__rcvr) {} in __t() function
123 explicit __t(auto&, _Receiver& __rcvr) noexcept : __rcvr_(__rcvr) {} in __t() argument
136 -> stdexec::__t<__operation<_ReceiverId>> in get_return_object()
138 return stdexec::__t<__operation<_ReceiverId>>{ in get_return_object()
139 __coro::coroutine_handle<__t>::from_promise(*this)}; in get_return_object()
149 requires tag_invocable<as_awaitable_t, _Awaitable, __t&>
[all …]
H A D__as_awaitable.hpp93 using _Promise = stdexec::__t<_PromiseId>;
95 struct __t : __receiver_base<_Value> struct
143 __t<__receiver<__id<_Promise>, __value_t<_Sender, _Promise>>>;
178 using _Promise = stdexec::__t<_PromiseId>;
179 using _Sender = stdexec::__t<_SenderId>;
182 struct __t : __sender_awaitable_base<__value> struct
184 __t(_Sender&& sndr, __coro::coroutine_handle<_Promise> __hcoro) // in __t() argument
203 __t<__sender_awaitable<__id<_Promise>, __id<_Sender>>>;
262 auto operator()(_Tp&& __t, _Promise& __promise) const in operator ()()
270 return tag_invoke(*this, static_cast<_Tp&&>(__t), __promise); in operator ()()
[all …]
H A D__run_loop.hpp60 using _Receiver = stdexec::__t<_ReceiverId>;
62 struct __t : __task struct
72 auto& __rcvr = static_cast<__t*>(__p)->__rcvr_; in __execute_impl()
92 explicit __t(__task* __tail) noexcept : __task{{}, this, __tail} {} in __t() argument
94 __t(__task* __next, run_loop* __loop, _Receiver __rcvr) : in __t() function
116 using __t = __schedule_task; typedef
125 stdexec::__t<__operation<stdexec::__id<_Receiver>>>;
139 using __t = __env; typedef
172 using __t = __scheduler; typedef
214 inline void __operation<_ReceiverId>::__t::start() & noexcept in start()
H A D__concepts.hpp133 requires(__cref_t<_Ty> __t) {
134 { __t == __t } -> convertible_to<bool>;
135 { __t != __t } -> convertible_to<bool>;
202 requires(_Ty&& __t, _Uy&& __u) { //
203 swap(static_cast<_Ty&&>(__t), static_cast<_Uy&&>(__u));
207 []<class _Ty, swappable_with<_Ty> _Uy>(_Ty&& __t, _Uy&& __u) //
208 noexcept(noexcept(swap(static_cast<_Ty&&>(__t), static_cast<_Uy&&>(__u)))) {
209 swap(static_cast<_Ty&&>(__t), static_cast<_Uy&&>(__u));
275 requires(_Ty&& __t) {
276 { __decay_t<_Ty>{__decay_t<_Ty>{static_cast<_Ty&&>(__t)}} } noexcept;
H A D__env.hpp112 constexpr auto operator()(_Tp&& __t) const noexcept -> bool in operator ()()
119 return tag_invoke(execute_may_block_caller_t{}, std::as_const(__t)); in operator ()()
133 constexpr auto operator()(_Tp&& __t) const noexcept( in operator ()()
139 std::as_const(__t)); in operator ()()
207 auto operator()(const _Env& __t) const noexcept
347 using __t = __root_env; typedef
457 using __t = prop; typedef
482 using __t = env; typedef
517 using __t = env; typedef
562 using __t = __with; typedef
[all …]
H A D__debug.hpp111 using __t = __debug_receiver; typedef
121 using __t = __debug_receiver; typedef
158 struct __t struct
164 __t(__debug_receiver<_CvrefSenderId, _Env, in __t() argument
168 using _Sender = stdexec::__t<_SenderId>; in __t()
181 void tag_invoke(_Tag, __t<__invalid_completion<_Tag(_Args...)>>, in tag_invoke()
H A D__sync_wait.hpp94 struct __t struct
151 using __receiver_t = __t<__sync_wait_result_impl<_Sender, __q<__receiver>>>;
157 using __t = __receiver_t<_Sender>; typedef
160 using __sync_receiver_for_t = __t<__sync_receiver_for<_Sender>>;
165 using __t = __sync_wait_result_t<_Sender>; typedef
168 using __value_tuple_for_t = __t<__value_tuple_for<_Sender>>;
173 using __t = __sync_wait_with_variant_result_t<_Sender>; typedef
176 using __variant_for_t = __t<__variant_for<_Sender>>;
H A D__meta.hpp36 using __t = typename _Tp::__t; typedef
41 using __t = _Ty; typedef
142 struct __t;
146 using __indices = __pack::__t<_Is...>*;
394 using __t = __meval__<_Fn, _Args...>; typedef
398 using __meval = __t<__meval_<_Fn, _Args...>>;
414 using __t = __minvoke__<_Fn, _Args...>; typedef
418 using __minvoke = __t<__minvoke_<_Fn, _Args...>>;
556 using __t = __minvoke<_Fn, _Args...>; typedef
559 using __minvoke_force = __t<__minvoke_force_<_Fn, _Args...>>;
[all …]
H A D__submit.hpp48 using __t = __receiver; typedef
52 using _Receiver = stdexec::__t<__mapply<__q<__msecond>, _Operation>>;
109 using _Sender = stdexec::__t<_SenderId>;
110 using _Receiver = stdexec::__t<_ReceiverId>;
H A D__start_detached.hpp37 using _Env = stdexec::__t<_EnvId>;
39 struct __t struct
67 using __detached_receiver_t = __t<__detached_receiver<__id<__decay_t<_Env>>>>;
H A D__stopped_as_optional.hpp94 static_assert(constructible_from<__t<_State>, _Args...>);
96 std::optional<__t<_State>>{
113 std::optional<__t<_State>>{std::nullopt});
H A D__let.hpp162 using __t = __mexception< typedef
169 using __bad_result_sender = __t<__bad_result_sender_<_Sender, _Set, _Env...>>;
276 __completion_signatures_of_t<_CvrefSender, _Env...>, __t<_LetTag>,
277 __transform_signal_fn<__t<_LetTag>, _Fun,
278 __completion_sched<_CvrefSender, __t<_LetTag>>,
319 using _Set = __t<_LetTag>; in __mk_transform_env_fn()
348 using _Set = __t<_LetTag>; in __mk_transform_sender_fn()
470 using __t = _Set; typedef
H A D__basic_sender.hpp168 struct __t struct
171 using _Receiver = stdexec::__t<_ReceiverId>; argument
214 template <__same_as<__t> _Self = __t>
375 __t<__receiver<__id<_Receiver>, _Sexpr, __msize_t<_Idx>>>;
557 using __t = __basic_sender; typedef
572 using __t = __sexpr; typedef
H A D__schedule_from.hpp95 using _Scheduler = stdexec::__t<_SchedulerId>;
97 struct __t struct
200 using _Env = __t<__environ<__id<__decay_t<_Scheduler>>>>; in operator ()()
H A D__read_env.hpp38 using __result_t = __call_result_t<_Tag, env_of_t<stdexec::__t<_ReceiverId>>>;
42 __nothrow_callable<_Tag, env_of_t<stdexec::__t<_ReceiverId>>>;
/openbmc/linux/arch/x86/include/asm/
H A Dvm86.h54 struct thread_struct *__t = (t); \
55 if (__t->vm86 != NULL) { \
56 kfree(__t->vm86); \
57 __t->vm86 = NULL; \
/openbmc/linux/arch/arc/include/asm/
H A Dbitops.h97 #define ffs(x) ({ unsigned long __t = (x); fls(__t & -__t); })
/openbmc/linux/drivers/gpu/drm/i915/display/
H A Dintel_display.h230 #define for_each_cpu_transcoder(__dev_priv, __t) \ argument
231 for ((__t) = 0; (__t) < I915_MAX_TRANSCODERS; (__t)++) \
232 for_each_if (DISPLAY_RUNTIME_INFO(__dev_priv)->cpu_transcoder_mask & BIT(__t))
234 #define for_each_cpu_transcoder_masked(__dev_priv, __t, __mask) \ argument
235 for_each_cpu_transcoder(__dev_priv, __t) \
236 for_each_if ((__mask) & BIT(__t))
/openbmc/linux/include/linux/
H A Dwait.h547 struct hrtimer_sleeper __t; \
549 hrtimer_init_sleeper_on_stack(&__t, CLOCK_MONOTONIC, \
552 hrtimer_set_expires_range_ns(&__t.timer, timeout, \
554 hrtimer_sleeper_start_expires(&__t, HRTIMER_MODE_REL); \
558 if (!__t.task) { \
564 hrtimer_cancel(&__t.timer); \
565 destroy_hrtimer_on_stack(&__t.timer); \

12