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

  /external/compiler-rt/lib/asan/
asan_thread.h 73 uptr stack_bottom() { return stack_bottom_; } function in class:__asan::AsanThread
  /external/compiler-rt/lib/tsan/rtl/
tsan_platform_linux.cc 237 uptr stack_top, stack_bottom; local
238 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom);
239 *stk_addr = stack_bottom;
240 *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...]

Completed in 364 milliseconds