Home
last modified time | relevance | path

Searched refs:stack_top (Results 1 – 2 of 2) sorted by relevance

/bionic/libc/bionic/
Dpthread_create.cpp259 result.stack_top = result.static_tls; in __allocate_thread_mapping()
265 char* stack_top; in __allocate_thread() local
279 stack_top = mapping.stack_top; in __allocate_thread()
286 stack_top = static_cast<char*>(attr->stack_base) + attr->stack_size; in __allocate_thread()
293 stack_top = align_down(stack_top - sizeof(pthread_internal_t), 16); in __allocate_thread()
295 pthread_internal_t* thread = reinterpret_cast<pthread_internal_t*>(stack_top); in __allocate_thread()
314 attr->stack_size = stack_top - static_cast<char*>(attr->stack_base); in __allocate_thread()
320 *child_stack = stack_top; in __allocate_thread()
Dpthread_internal.h153 char* stack_top; member