HomeSort by relevance Sort by last modified time
    Searched refs:stack_bottom (Results 1 - 16 of 16) sorted by null

  /external/compiler-rt/lib/asan/
asan_stack.h 39 uptr stack_top = 0, stack_bottom = 0; \
43 stack_bottom = t->stack_bottom(); \
46 stack_top, stack_bottom, fast); \
asan_thread.h 64 uptr stack_bottom() { return stack_bottom_; } function in class:__asan::AsanThread
asan_thread.cc 168 bottom = stack_bottom();
277 *stack_begin = t->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...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_win.cc 68 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;
sanitizer_linux_libcdep.cc 31 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;
sanitizer_mac.cc 136 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;
sanitizer_posix_libcdep.cc 94 uptr stack_top, uptr stack_bottom, bool fast) {
109 stack->FastUnwindStack(pc, bp, stack_top, stack_bottom);
sanitizer_stacktrace.h 55 void FastUnwindStack(uptr pc, uptr bp, uptr stack_top, uptr stack_bottom);
74 uptr stack_top, uptr stack_bottom, bool fast);
sanitizer_stacktrace.cc 132 uptr stack_top, uptr stack_bottom) {
141 frame > (uhwptr *)stack_bottom &&
sanitizer_common.h 49 uptr *stack_bottom);
  /external/compiler-rt/lib/msan/
msan.cc 58 uptr stack_top, stack_bottom; member in struct:__anon19124
162 static void GetCurrentStackBounds(uptr *stack_top, uptr *stack_bottom) {
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...]
  /bionic/libc/bionic/
libc_init_common.cpp 98 uintptr_t stack_bottom = stack_top - stack_size; local
105 pthread_attr_setstack(&thread.attr, (void*) stack_bottom, stack_size);
  /external/compiler-rt/lib/lsan/
lsan_interceptors.cc 40 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/
grokdump.py     [all...]
  /external/chromium_org/v8/tools/
grokdump.py     [all...]

Completed in 344 milliseconds