Searched refs:stack_bottom (Results 1 - 15 of 15) 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/asan/
H A Dasan_stack.h38 uptr stack_bottom = t->stack_bottom();
40 stack->Unwind(max_depth, pc, bp, context, stack_top, stack_bottom, fast);
H A Dasan_thread.h66 uptr stack_bottom() { return stack_bottom_; } function in class:__asan::AsanThread
H A Dasan_thread.cc205 bottom = stack_bottom();
316 *stack_begin = t->stack_bottom();
/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_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_stacktrace.h66 uptr stack_bottom, bool request_fast_unwind);
72 void FastUnwindStack(uptr pc, uptr bp, uptr stack_top, uptr stack_bottom,
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_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
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_common.h51 uptr *stack_bottom);
/external/compiler-rt/lib/msan/
H A Dmsan_thread.h32 uptr stack_bottom() { return stack_bottom_; } function in class:__msan::MsanThread
H A Dmsan.cc198 stack->Unwind(max_s, pc, bp, 0, t->stack_top(), t->stack_bottom(),
/external/compiler-rt/lib/lsan/
H A Dlsan_interceptors.cc40 uptr stack_top = 0, stack_bottom = 0; \
45 stack_bottom = t->stack_begin(); \
49 stack_top, stack_bottom, fast); \
/external/chromium_org/v8/tools/
H A Dgrokdump.py1630 stack_bottom = exception_thread.stack.start + \
1634 for slot in xrange(stack_top, stack_bottom, self.reader.PointerSize()):
1636 for slot in xrange(stack_top, stack_bottom, self.reader.PointerSize()):
2085 stack_bottom = exception_thread.stack.start + \
2088 for slot in xrange(stack_top, stack_bottom, self.reader.PointerSize()):
2156 stack_bottom = exception_thread.stack.start + \
2159 self.output_words(f, stack_top - 16, stack_bottom, stack_top, "Stack")
3060 stack_bottom = exception_thread.stack.start + \
3063 for slot in xrange(stack_top, stack_bottom, reader.PointerSize()):
3105 for slot in xrange(stack_top, stack_bottom, reade
[all...]

Completed in 3671 milliseconds