HomeSort by relevance Sort by last modified time
    Searched refs:stack_top (Results 1 - 25 of 46) sorted by null

1 2

  /external/compiler-rt/lib/asan/
asan_stack.h 39 uptr stack_top = 0, stack_bottom = 0; \
42 stack_top = t->stack_top(); \
46 stack_top, stack_bottom, fast); \
asan_thread.h 63 uptr stack_top() { return stack_top_; } function in class:__asan::AsanThread
  /external/checkpolicy/
module_compiler.c 49 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->parent == NULL)
    [all...]
  /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]) ));
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 = new_stack_bottom + (stack_top - stack_bottom)
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/xray/
browser.c 86 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--);
  /system/core/libcorkscrew/
backtrace-helper.c 36 frame->stack_top = 0;
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_win.cc 67 void GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top,
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;
sanitizer_linux_libcdep.cc 30 void GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top,
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;
sanitizer_mac.cc 135 void GetThreadStackTopAndBottom(bool at_initialization, uptr *stack_top,
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;
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) {
137 if (stack_top < 4096) return; // Sanity check for stack top.
140 frame < (uhwptr *)stack_top - 2 &&
  /external/compiler-rt/lib/msan/
msan.cc 58 uptr stack_top, stack_bottom; member in struct:__anon19122
162 static void GetCurrentStackBounds(uptr *stack_top, uptr *stack_bottom) {
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_bottom)
    [all...]
  /external/chromium_org/chrome_frame/crash_reporting/
vectored_handler-impl.h 223 void* stack_top = GetStackTopLimit() - kPageSize; local
224 ::VirtualQuery(stack_top, &mi, sizeof(mi));
228 if (stack_top2 != stack_top)
  /bionic/libc/bionic/
libc_init_common.cpp 96 uintptr_t stack_top = (__get_sp() & ~(PAGE_SIZE - 1)) + PAGE_SIZE; local
98 uintptr_t stack_bottom = stack_top - stack_size;
  /external/kernel-headers/original/linux/
binfmts.h 83 unsigned long stack_top,
  /system/core/include/corkscrew/
backtrace.h 36 uintptr_t stack_top; /* top of stack for this frame */ member in struct:__anon62574
  /system/core/libcorkscrew/arch-mips/
backtrace-mips.c 91 frame->stack_top = state->sp;
94 index, frame, frame->absolute_pc, frame->stack_top);
  /external/compiler-rt/lib/lsan/
lsan_interceptors.cc 40 uptr stack_top = 0, stack_bottom = 0; \
44 stack_top = t->stack_end(); \
49 GET_CURRENT_FRAME(), stack_top, stack_bottom, fast); \
  /system/core/debuggerd/
tombstone.c 303 if (backtrace[i].stack_top) {
319 uintptr_t sp = backtrace[first].stack_top - STACK_WORDS * sizeof(uint32_t);
326 if (sp != frame->stack_top) {
328 sp = frame->stack_top;
335 if (sp < frame->stack_top + frame->stack_size) {
  /external/chromium_org/third_party/tcmalloc/vendor/src/
memory_region_map.cc 322 bool MemoryRegionMap::FindAndMarkStackRegion(uintptr_t stack_top,
325 const Region* region = DoFindRegionLocked(stack_top);
328 reinterpret_cast<void*>(stack_top),
memory_region_map.h 210 // 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/
memory_region_map.h 222 // Find the region that contains stack_top, mark that region as
227 static bool FindAndMarkStackRegion(uintptr_t stack_top, Region* result);
  /external/chromium_org/v8/src/
regexp-macro-assembler.h 228 // successful, and updates the stack_top address, or returns 0 if unable
231 static Address GrowStack(Address stack_pointer, Address* stack_top,
  /external/v8/src/
regexp-macro-assembler.h 213 // successful, and updates the stack_top address, or returns 0 if unable
216 static Address GrowStack(Address stack_pointer, Address* stack_top,

Completed in 484 milliseconds

1 2