Searched refs:stack_bottom (Results 1 - 13 of 13) sorted by relevance

/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...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_win.cc32 uptr *stack_bottom) {
34 CHECK(stack_bottom);
41 *stack_bottom = (uptr)mbi.AllocationBase;
31 GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top, uptr *stack_bottom) argument
H A Dsanitizer_mac.cc84 uptr *stack_bottom) {
86 CHECK(stack_bottom);
90 *stack_bottom = *stack_top - stacksize;
83 GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top, uptr *stack_bottom) argument
H A Dsanitizer_linux.cc93 uptr *stack_bottom) {
96 CHECK(stack_bottom);
124 *stack_bottom = end - stacksize;
135 *stack_bottom = (uptr)stackaddr;
92 GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top, uptr *stack_bottom) argument
H A Dsanitizer_stacktrace.h46 void FastUnwindStack(uptr pc, uptr bp, uptr stack_top, uptr stack_bottom);
H A Dsanitizer_stacktrace.cc97 uptr stack_top, uptr stack_bottom) {
104 frame > (uptr*)stack_bottom &&
96 FastUnwindStack(uptr pc, uptr bp, uptr stack_top, uptr stack_bottom) argument
H A Dsanitizer_common.h39 uptr *stack_bottom);
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_platform_linux.cc237 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/compiler-rt/lib/asan/
H A Dasan_thread.h73 uptr stack_bottom() { return stack_bottom_; } function in class:__asan::AsanThread
H A Dasan_thread.cc123 bottom = stack_bottom();
H A Dasan_linux.cc145 stack->FastUnwindStack(pc, bp, t->stack_top(), t->stack_bottom());
H A Dasan_mac.cc162 stack->FastUnwindStack(pc, bp, t->stack_top(), t->stack_bottom());
/external/v8/tools/
H A Dgrokdump.py1032 stack_bottom = exception_thread.stack.start + \
1035 for slot in xrange(stack_top, stack_bottom, reader.PointerSize()):
1049 for slot in xrange(stack_top, stack_bottom, reader.PointerSize()):

Completed in 193 milliseconds