HomeSort by relevance Sort by last modified time
    Searched defs:stack_bottom (Results 1 - 6 of 6) sorted by null

  /bionic/libc/bionic/
libc_init_common.cpp 98 uintptr_t stack_bottom = stack_top - stack_size; local
105 pthread_attr_setstack(&thread.attr, (void*) stack_bottom, stack_size);
  /external/compiler-rt/lib/asan/
asan_thread.h 64 uptr stack_bottom() { return stack_bottom_; } function in class:__asan::AsanThread
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_linux_libcdep.cc 31 uptr *stack_bottom) {
34 CHECK(stack_bottom);
62 *stack_bottom = end - stacksize;
75 *stack_bottom = (uptr)stackaddr;
242 uptr stack_top, stack_bottom; local
243 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom);
244 *stk_addr = stack_bottom;
245 *stk_size = stack_top - stack_bottom;
sanitizer_mac.cc 136 uptr *stack_bottom) {
138 CHECK(stack_bottom);
142 *stack_bottom = *stack_top - stacksize;
360 uptr stack_top, stack_bottom; local
361 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom);
362 *stk_addr = stack_bottom;
363 *stk_size = stack_top - stack_bottom;
  /external/opencv/cv/src/
cvcanny.cpp 53 uchar **stack_top, **stack_bottom = 0; local
135 CV_CALL( stack_top = stack_bottom = (uchar**)cvAlloc( maxsize*sizeof(stack_top[0]) ));
219 if( (stack_top - stack_bottom) + size.width > maxsize )
224 memcpy( new_stack_bottom, stack_bottom, (stack_top - stack_bottom)*sizeof(stack_top[0]) );
225 stack_top = new_stack_bottom + (stack_top - stack_bottom);
226 cvFree( &stack_bottom );
227 stack_bottom = new_stack_bottom;
305 while( stack_top > stack_bottom )
308 if( (stack_top - stack_bottom) + 8 > maxsize
    [all...]
  /external/compiler-rt/lib/msan/
msan.cc 58 uptr stack_top, stack_bottom; member in struct:__anon19122
162 static void GetCurrentStackBounds(uptr *stack_top, uptr *stack_bottom) {
166 __msan_stack_bounds.stack_top = __msan_stack_bounds.stack_bottom = 1;
169 &__msan_stack_bounds.stack_bottom);
172 *stack_bottom = __msan_stack_bounds.stack_bottom;
183 uptr stack_top, stack_bottom; local
184 GetCurrentStackBounds(&stack_top, &stack_bottom);
188 stack->FastUnwindStack(pc, bp, stack_top, stack_bottom);
302 &__msan_stack_bounds.stack_bottom);
    [all...]

Completed in 526 milliseconds