Searched refs:old_sp (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dstacktrace_arm-inl.h58 static void **NextStackFrame(void **old_sp) { argument
59 void **new_sp = (void**) old_sp[-1];
61 // Check that the transition from frame pointer old_sp to frame
66 if (new_sp <= old_sp) return NULL;
68 if ((uintptr_t)new_sp - (uintptr_t)old_sp > 100000) return NULL;
72 if (new_sp == old_sp) return NULL;
74 if ((new_sp > old_sp)
75 && ((uintptr_t)new_sp - (uintptr_t)old_sp > 1000000)) return NULL;
H A Dstacktrace_powerpc-inl.h53 static void **NextStackFrame(void **old_sp) { argument
54 void **new_sp = (void **) *old_sp;
56 // Check that the transition from frame pointer old_sp to frame
61 if (new_sp <= old_sp) return NULL;
63 if ((uintptr_t)new_sp - (uintptr_t)old_sp > 100000) return NULL;
67 if (new_sp == old_sp) return NULL;
69 if ((new_sp > old_sp)
70 && ((uintptr_t)new_sp - (uintptr_t)old_sp > 1000000)) return NULL;
H A Dstacktrace_x86-inl.h145 static void **NextStackFrame(void **old_sp, const void *uc) { argument
146 void **new_sp = (void **) *old_sp;
188 old_sp[1] == kernel_rt_sigreturn_address) {
232 // Check that the transition from frame pointer old_sp to frame
237 if (new_sp <= old_sp) return NULL;
239 if ((uintptr_t)new_sp - (uintptr_t)old_sp > 100000) return NULL;
243 if (new_sp == old_sp) return NULL;
244 if (new_sp > old_sp) {
246 const uintptr_t delta = (uintptr_t)new_sp - (uintptr_t)old_sp;
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dstacktrace_arm-inl.h58 static void **NextStackFrame(void **old_sp) { argument
59 void **new_sp = (void**) old_sp[-1];
61 // Check that the transition from frame pointer old_sp to frame
66 if (new_sp <= old_sp) return NULL;
68 if ((uintptr_t)new_sp - (uintptr_t)old_sp > 100000) return NULL;
72 if (new_sp == old_sp) return NULL;
74 if ((new_sp > old_sp)
75 && ((uintptr_t)new_sp - (uintptr_t)old_sp > 1000000)) return NULL;
H A Dstacktrace_powerpc-inl.h53 static void **NextStackFrame(void **old_sp) { argument
54 void **new_sp = (void **) *old_sp;
56 // Check that the transition from frame pointer old_sp to frame
61 if (new_sp <= old_sp) return NULL;
63 if ((uintptr_t)new_sp - (uintptr_t)old_sp > 100000) return NULL;
67 if (new_sp == old_sp) return NULL;
69 if ((new_sp > old_sp)
70 && ((uintptr_t)new_sp - (uintptr_t)old_sp > 1000000)) return NULL;
H A Dstacktrace_x86-inl.h142 static void **NextStackFrame(void **old_sp, const void *uc) { argument
143 void **new_sp = (void **) *old_sp;
185 old_sp[1] == kernel_rt_sigreturn_address) {
229 // Check that the transition from frame pointer old_sp to frame
234 if (new_sp <= old_sp) return NULL;
236 if ((uintptr_t)new_sp - (uintptr_t)old_sp > 100000) return NULL;
240 if (new_sp == old_sp) return NULL;
241 if (new_sp > old_sp) {
243 const uintptr_t delta = (uintptr_t)new_sp - (uintptr_t)old_sp;

Completed in 102 milliseconds