Searched defs:stack_bottom (Results 1 - 8 of 8) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace.cc40 uptr stack_top, uptr stack_bottom,
51 frame > (uhwptr *)stack_bottom &&
39 FastUnwindStack(uptr pc, uptr bp, uptr stack_top, uptr stack_bottom, uptr max_depth) argument
H A Dsanitizer_stacktrace_libcdep.cc75 uptr stack_top, uptr stack_bottom,
94 FastUnwindStack(pc, bp, stack_top, stack_bottom, max_depth);
74 Unwind(uptr max_depth, uptr pc, uptr bp, void *context, uptr stack_top, uptr stack_bottom, bool request_fast_unwind) argument
H A Dsanitizer_linux_libcdep.cc75 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;
74 GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top, uptr *stack_bottom) argument
H A Dsanitizer_mac.cc156 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;
155 GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top, uptr *stack_bottom) argument
H A Dsanitizer_win.cc68 uptr *stack_bottom) {
70 CHECK(stack_bottom);
77 *stack_bottom = (uptr)mbi.AllocationBase;
426 uptr stack_top, stack_bottom;
427 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom);
428 *stk_addr = stack_bottom;
429 *stk_size = stack_top - stack_bottom;
67 GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top, uptr *stack_bottom) argument
/external/compiler-rt/lib/msan/
H A Dmsan_thread.h32 uptr stack_bottom() { return stack_bottom_; } function in class:__msan::MsanThread
/external/compiler-rt/lib/asan/
H A Dasan_thread.h66 uptr stack_bottom() { return stack_bottom_; } function in class:__asan::AsanThread
/external/opencv/cv/src/
H A Dcvcanny.cpp53 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)
[all...]

Completed in 187 milliseconds