Lines Matching refs:stackBottom

44             uptr stackBottom;  member
45 StackBufferAdapter(uptr stackBottom) : stackBottom(stackBottom) {} in StackBufferAdapter()
46 uptr GetStackBottom() const { return stackBottom; } in GetStackBottom()
214 uptr stackBottom, in TryInitializeAndStartImpl() argument
223 stackBottom, in TryInitializeAndStartImpl()
226 (isAutoStack ? stackBottom: NULL) ); in TryInitializeAndStartImpl()
233 uptr stackBottom, in TryInitializeAndStartImpl() argument
242 uptr stack = stackBottom; in TryInitializeAndStartImpl()
301 Result Thread::PostStartUsingAutoStack(Result result, uptr stackBottom) in PostStartUsingAutoStack() argument
305 s_pAutoStackManager->Destruct(reinterpret_cast<void*>(stackBottom), true); in PostStartUsingAutoStack()
316 const uptr stackBottom = PreStartUsingAutoStack(stackSize); in TryInitializeAndStartImplUsingAutoStack() local
317 Result result = TryInitializeAndStartImpl(typeInfo, f, p, stackBottom, priority, coreNo, true); in TryInitializeAndStartImplUsingAutoStack()
318 return PostStartUsingAutoStack(result, stackBottom); in TryInitializeAndStartImplUsingAutoStack()
369 void nnosThreadInitializeAndStart(nnosThread* p, void (*f)(uptr), uptr param, uptr stackBottom, s32… in nnosThreadInitializeAndStart() argument
372 StackBufferAdapter stack(stackBottom); in nnosThreadInitializeAndStart()
376 bool nnosThreadTryInitializeAndStart(nnosThread* p, void (*f)(uptr), uptr param, uptr stackBottom, … in nnosThreadTryInitializeAndStart() argument
379 StackBufferAdapter stack(stackBottom); in nnosThreadTryInitializeAndStart()