Searched refs:stack_top (Results 1 - 25 of 38) sorted by relevance

12

/external/compiler-rt/lib/asan/
H A Dasan_stack.h39 uptr stack_top = 0, stack_bottom = 0; \
42 stack_top = t->stack_top(); \
46 stack_top, stack_bottom, fast); \
H A Dasan_thread.h63 uptr stack_top() { return stack_top_; } function in class:__asan::AsanThread
H A Dasan_thread.cc278 *stack_end = t->stack_top();
/external/checkpolicy/
H A Dmodule_compiler.c49 static scope_stack_t *stack_top = NULL; variable
93 while (stack_top != NULL) {
111 if (stack_top->type != 1 || stack_top->in_else) {
130 avrule_decl_t *decl = stack_top->decl;
239 assert(stack_top->type == 1);
240 if (stack_top->parent == NULL) {
244 roles_tab = stack_top->decl->p_roles.table;
444 assert(stack_top->type == 1);
445 if (stack_top
[all...]
/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]) ));
153 #define CANNY_PUSH(d) *(d) = (uchar)2, *stack_top++ = (d)
154 #define CANNY_POP(d) (d) = *--stack_top
219 if( (stack_top - stack_bottom) + size.width > maxsize )
223 CV_CALL( new_stack_bottom = (uchar**)cvAlloc( maxsize * sizeof(stack_top[0])) );
224 memcpy( new_stack_bottom, stack_bottom, (stack_top - stack_bottom)*sizeof(stack_top[0]) );
225 stack_top
[all...]
/external/chromium_org/native_client_sdk/src/libraries/xray/
H A Dbrowser.c86 struct XRayTraceBufferEntry** stack_top = stack_base; local
87 *stack_top = NULL;
104 while(*stack_top &&
105 XRAY_EXTRACT_DEPTH((*stack_top)->depth_addr) >= depth) {
106 struct XRayTraceBufferEntry* e = *(stack_top--);
137 *(++stack_top) = e;
140 while(*stack_top) {
141 struct XRayTraceBufferEntry* e = *(stack_top--);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_win.cc67 void GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top, argument
69 CHECK(stack_top);
76 *stack_top = (uptr)mbi.BaseAddress + mbi.RegionSize;
360 uptr stack_top, stack_bottom;
361 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom);
363 *stk_size = stack_top - stack_bottom;
370 uptr stack_top, uptr stack_bottom, bool fast) {
372 (void)stack_top;
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.cc30 void GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top, argument
33 CHECK(stack_top);
61 *stack_top = end;
74 *stack_top = (uptr)stackaddr + stacksize;
242 uptr stack_top, stack_bottom; local
243 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom);
245 *stk_size = stack_top - stack_bottom;
H A Dsanitizer_mac.cc135 void GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top, argument
137 CHECK(stack_top);
141 *stack_top = (uptr)stackaddr;
142 *stack_bottom = *stack_top - stacksize;
360 uptr stack_top, stack_bottom; local
361 GetThreadStackTopAndBottom(main, &stack_top, &stack_bottom);
363 *stk_size = stack_top - stack_bottom;
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) {
137 if (stack_top < 4096) return; // Sanity check for stack top.
140 frame < (uhwptr *)stack_top - 2 &&
131 FastUnwindStack(uptr pc, uptr bp, uptr stack_top, uptr stack_bottom) argument
/external/compiler-rt/lib/msan/
H A Dmsan.cc58 uptr stack_top, stack_bottom; member in struct:__anon16728
162 static void GetCurrentStackBounds(uptr *stack_top, uptr *stack_bottom) { argument
163 if (__msan_stack_bounds.stack_top == 0) {
166 __msan_stack_bounds.stack_top = __msan_stack_bounds.stack_bottom = 1;
168 &__msan_stack_bounds.stack_top,
171 *stack_top = __msan_stack_bounds.stack_top;
183 uptr stack_top, stack_bottom; local
184 GetCurrentStackBounds(&stack_top, &stack_bottom);
188 stack->FastUnwindStack(pc, bp, stack_top, stack_botto
[all...]
/external/kernel-headers/original/linux/
H A Dbinfmts.h83 unsigned long stack_top,
/external/chromium_org/chrome_frame/crash_reporting/
H A Dvectored_handler-impl.h223 void* stack_top = GetStackTopLimit() - kPageSize; local
224 ::VirtualQuery(stack_top, &mi, sizeof(mi));
228 if (stack_top2 != stack_top)
/external/compiler-rt/lib/lsan/
H A Dlsan_interceptors.cc40 uptr stack_top = 0, stack_bottom = 0; \
44 stack_top = t->stack_end(); \
49 GET_CURRENT_FRAME(), stack_top, stack_bottom, fast); \
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dmemory_region_map.cc322 bool MemoryRegionMap::FindAndMarkStackRegion(uintptr_t stack_top, argument
325 const Region* region = DoFindRegionLocked(stack_top);
328 reinterpret_cast<void*>(stack_top),
H A Dmemory_region_map.h210 // Find the region that contains stack_top, mark that region as
215 static bool FindAndMarkStackRegion(uintptr_t stack_top, Region* result);
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dmemory_region_map.h222 // Find the region that contains stack_top, mark that region as
227 static bool FindAndMarkStackRegion(uintptr_t stack_top, Region* result);
H A Dmemory_region_map.cc359 bool MemoryRegionMap::FindAndMarkStackRegion(uintptr_t stack_top, argument
362 const Region* region = DoFindRegionLocked(stack_top);
365 reinterpret_cast<void*>(stack_top),
/external/v8/src/
H A Dregexp-macro-assembler.h213 // successful, and updates the stack_top address, or returns 0 if unable
216 static Address GrowStack(Address stack_pointer, Address* stack_top,
/external/chromium/sdch/open-vcdiff/src/gtest/
H A Dgtest-death-test.cc579 void* const stack_top = local
582 const pid_t child_pid = clone(&ExecDeathTestChildMain, stack_top,
/external/chromium_org/v8/src/
H A Dregexp-macro-assembler.h228 // successful, and updates the stack_top address, or returns 0 if unable
231 static Address GrowStack(Address stack_pointer, Address* stack_top,
/external/open-vcdiff/gtest/src/
H A Dgtest-death-test.cc914 void* const stack_top = local
917 child_pid = clone(&ExecDeathTestChildMain, stack_top, SIGCHLD, &args);
/external/protobuf/gtest/src/
H A Dgtest-death-test.cc914 void* const stack_top = local
917 child_pid = clone(&ExecDeathTestChildMain, stack_top, SIGCHLD, &args);

Completed in 320 milliseconds

12