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

  /external/compiler-rt/lib/msan/
msan_thread.h 32 uptr stack_bottom() { return stack_bottom_; } function in class:__msan::MsanThread
  /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/asan/
asan_thread.cc 179 uptr AsanThread::stack_bottom() { function in class:__asan::AsanThread
286 bottom = stack_bottom();
403 *stack_begin = t->stack_bottom();
  /external/google-breakpad/src/client/solaris/handler/
minidump_generator.cc 109 uintptr_t stack_bottom = lwp_lister->GetLwpStackBottom(last_ebp); local
110 if (stack_bottom > last_ebp &&
111 stack_bottom == crashing_context->crashing_stack_bottom) {
138 uintptr_t stack_bottom = lwp_lister->GetLwpStackBottom(last_esp); local
139 if (stack_bottom >= last_esp) {
140 int size = stack_bottom - last_esp;
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_mac.cc 248 uptr *stack_bottom) {
250 CHECK(stack_bottom);
268 *stack_bottom = *stack_top - stacksize;
366 uptr stack_top, stack_bottom; local
367 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom);
368 *stk_addr = stack_bottom;
369 *stk_size = stack_top - stack_bottom;

Completed in 229 milliseconds