Home
last modified time | relevance | path

Searched refs:ThreadStack (Results 1 – 8 of 8) sorted by relevance

/aosp_15_r20/external/ruy/ruy/profiler/
H A Dinstrumentation.cc80 std::vector<ThreadStack*>* GlobalAllThreadStacks() { in GlobalAllThreadStacks()
81 static std::vector<ThreadStack*> all_stacks; in GlobalAllThreadStacks()
85 ThreadStack* ThreadLocalThreadStack() { in ThreadLocalThreadStack()
86 thread_local static ThreadStack thread_stack; in ThreadLocalThreadStack()
90 ThreadStack::ThreadStack() { in ThreadStack() function in ruy::profiler::detail::ThreadStack
97 ThreadStack::~ThreadStack() { in ~ThreadStack()
99 std::vector<ThreadStack*>* all_stacks = GlobalAllThreadStacks(); in ~ThreadStack()
H A Dinstrumentation.h76 class ThreadStack; variable
82 std::vector<ThreadStack*>* GlobalAllThreadStacks();
88 ThreadStack* ThreadLocalThreadStack();
114 class ThreadStack {
116 ThreadStack();
117 ~ThreadStack();
183 detail::ThreadStack* thread_stack_;
H A Dprofiler.cc68 for (detail::ThreadStack* thread_stack : *thread_stacks) { in ThreadFunc()
74 void ScopeProfile::Sample(const detail::ThreadStack& thread_stack) { in Sample()
H A Dprofiler.h60 void Sample(const detail::ThreadStack& stack);
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/IntelJITEvents/
H A Djitprofiling.c97 } ThreadStack, *pThreadStack; typedef
179 threadStack = (pThreadStack) calloc (sizeof(ThreadStack), 1); in iJIT_NotifyEvent()
/aosp_15_r20/external/llvm/lib/ExecutionEngine/IntelJITEvents/
H A Djitprofiling.c99 } ThreadStack, *pThreadStack; typedef
181 threadStack = (pThreadStack) calloc (sizeof(ThreadStack), 1); in iJIT_NotifyEvent()
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/ExecutionEngine/IntelJITEvents/
H A Djitprofiling.c97 } ThreadStack, *pThreadStack; typedef
179 threadStack = (pThreadStack) calloc (sizeof(ThreadStack), 1); in iJIT_NotifyEvent()
/aosp_15_r20/external/pigweed/seed/
H A D0128.rst52 - ``pw::ThreadStack`` -- Optionally specify a thread stack separately from
853 - ``ThreadContext<>`` -- Context with a runtime-provided ``ThreadStack``.
895 ``ThreadStack``
905 class ThreadStack {
912 ``ThreadStack`` may specified separately from the ``ThreadContext`` if users
914 from other items in the ``ThreadContext``. The ``ThreadStack`` is set on the
919 STACK_SECTION alignas(256) constinit ThreadStack<kAppStackSizeBytes> kMainStack;
937 STACK_SECTION alignas(256) constinit ThreadStack<kAppStackSizeBytes> kAppStack;
991 // attributes have a ThreadStack set.