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/compiler-rt/lib/asan/
asan_thread.h 66 uptr stack_bottom() { return stack_bottom_; } function in class:__asan::AsanThread
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_mac.cc 156 uptr *stack_bottom) {
158 CHECK(stack_bottom);
176 *stack_bottom = *stack_top - stacksize;
257 uptr stack_top, stack_bottom; local
258 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom);
259 *stk_addr = stack_bottom;
260 *stk_size = stack_top - stack_bottom;
sanitizer_linux_libcdep.cc 75 uptr *stack_bottom) {
77 CHECK(stack_bottom);
105 *stack_bottom = end - stacksize;
118 *stack_bottom = (uptr)stackaddr;
424 uptr stack_top, stack_bottom; local
425 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom);
426 *stk_addr = stack_bottom;
427 *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 811 milliseconds