HomeSort by relevance Sort by last modified time
    Searched defs:stack_top (Results 1 - 23 of 23) sorted by null

  /system/core/include/corkscrew/
backtrace.h 36 uintptr_t stack_top; /* top of stack for this frame */ member in struct:__anon62581
  /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/compiler-rt/lib/asan/
asan_thread.h 63 uptr stack_top() { return stack_top_; } function in class:__asan::AsanThread
  /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)
  /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--);
  /external/compiler-rt/lib/sanitizer_common/
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;
  /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/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/chromium/sdch/open-vcdiff/src/gtest/
gtest-death-test.cc 579 void* const stack_top = local
582 const pid_t child_pid = clone(&ExecDeathTestChildMain, stack_top,
  /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) {
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...]
  /system/core/libcorkscrew/arch-x86/
backtrace-x86.c 806 uint32_t stack_top = state->reg[DWARF_ESP]; local
811 frame->stack_top = stack_top;
812 if (stack_top < state->reg[DWARF_ESP]) {
813 frame->stack_size = state->reg[DWARF_ESP] - stack_top;
816 ALOGV("Stack: 0x%x ... 0x%x - %d bytes", frame->stack_top, state->reg[DWARF_ESP], frame->stack_size);
    [all...]
  /external/chromium/testing/gtest/src/
gtest-death-test.cc 962 void* const stack_top = local
    [all...]
  /external/chromium_org/testing/gtest/src/
gtest-death-test.cc 1066 void* const stack_top = local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/src/
gtest-death-test.cc 967 void* const stack_top = local
    [all...]
  /external/gtest/src/
gtest-death-test.cc 967 void* const stack_top = local
    [all...]
  /external/llvm/utils/unittest/googletest/
gtest-death-test.cc 966 void* const stack_top = local
    [all...]
  /external/mesa3d/src/gtest/src/
gtest-death-test.cc 967 void* const stack_top = local
    [all...]
  /external/open-vcdiff/gtest/src/
gtest-death-test.cc 914 void* const stack_top = local
    [all...]
  /external/protobuf/gtest/src/
gtest-death-test.cc 914 void* const stack_top = local
    [all...]
  /ndk/sources/third_party/googletest/googletest/src/
gtest-death-test.cc 1068 void* const stack_top = local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.jasper_5.5.17.v201004212143.jar 
  /prebuilts/misc/common/ecj/
ecj.jar 

Completed in 595 milliseconds