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

/external/compiler-rt/lib/asan/
H A Dasan_stack.h39 uptr stack_top = 0, stack_bottom = 0; \
43 stack_bottom = t->stack_bottom(); \
46 stack_top, stack_bottom, fast); \
H A Dasan_thread.h64 uptr stack_bottom() { return stack_bottom_; } function in class:__asan::AsanThread
H A Dasan_thread.cc168 bottom = stack_bottom();
277 *stack_begin = t->stack_bottom();
/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.cc68 uptr *stack_bottom) {
70 CHECK(stack_bottom);
77 *stack_bottom = (uptr)mbi.AllocationBase;
360 uptr stack_top, stack_bottom;
361 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom);
362 *stk_addr = stack_bottom;
363 *stk_size = stack_top - stack_bottom;
370 uptr stack_top, uptr stack_bottom, bool fast) {
373 (void)stack_bottom;
67 GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top, uptr *stack_bottom) argument
369 GetStackTrace(StackTrace *stack, uptr max_s, uptr pc, uptr bp, uptr stack_top, uptr stack_bottom, bool fast) argument
H A Dsanitizer_linux_libcdep.cc31 uptr *stack_bottom) {
34 CHECK(stack_bottom);
62 *stack_bottom = end - stacksize;
75 *stack_bottom = (uptr)stackaddr;
242 uptr stack_top, stack_bottom; local
243 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom);
244 *stk_addr = stack_bottom;
245 *stk_size = stack_top - stack_bottom;
30 GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top, uptr *stack_bottom) argument
H A Dsanitizer_mac.cc136 uptr *stack_bottom) {
138 CHECK(stack_bottom);
142 *stack_bottom = *stack_top - stacksize;
360 uptr stack_top, stack_bottom; local
361 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom);
362 *stk_addr = stack_bottom;
363 *stk_size = stack_top - stack_bottom;
135 GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top, uptr *stack_bottom) argument
H A Dsanitizer_posix_libcdep.cc94 uptr stack_top, uptr stack_bottom, bool fast) {
109 stack->FastUnwindStack(pc, bp, stack_top, stack_bottom);
93 GetStackTrace(StackTrace *stack, uptr max_s, uptr pc, uptr bp, uptr stack_top, uptr stack_bottom, bool fast) argument
H A Dsanitizer_stacktrace.h55 void FastUnwindStack(uptr pc, uptr bp, uptr stack_top, uptr stack_bottom);
74 uptr stack_top, uptr stack_bottom, bool fast);
H A Dsanitizer_stacktrace.cc132 uptr stack_top, uptr stack_bottom) {
141 frame > (uhwptr *)stack_bottom &&
131 FastUnwindStack(uptr pc, uptr bp, uptr stack_top, uptr stack_bottom) argument
H A Dsanitizer_common.h49 uptr *stack_bottom);
/external/compiler-rt/lib/msan/
H A Dmsan.cc58 uptr stack_top, stack_bottom; member in struct:__anon16729
162 static void GetCurrentStackBounds(uptr *stack_top, uptr *stack_bottom) { argument
166 __msan_stack_bounds.stack_top = __msan_stack_bounds.stack_bottom = 1;
169 &__msan_stack_bounds.stack_bottom);
172 *stack_bottom = __msan_stack_bounds.stack_bottom;
183 uptr stack_top, stack_bottom; local
184 GetCurrentStackBounds(&stack_top, &stack_bottom);
188 stack->FastUnwindStack(pc, bp, stack_top, stack_bottom);
302 &__msan_stack_bounds.stack_bottom);
[all...]
/external/compiler-rt/lib/lsan/
H A Dlsan_interceptors.cc40 uptr stack_top = 0, stack_bottom = 0; \
45 stack_bottom = t->stack_begin(); \
49 GET_CURRENT_FRAME(), stack_top, stack_bottom, fast); \
/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()):
/external/chromium_org/v8/tools/
H A Dgrokdump.py1919 stack_bottom = exception_thread.stack.start + \
1922 for slot in xrange(stack_top, stack_bottom, reader.PointerSize()):
1964 for slot in xrange(stack_top, stack_bottom, reader.PointerSize()):

Completed in 506 milliseconds