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

  /external/chromium_org/third_party/tcmalloc/chromium/src/
stacktrace_arm-inl.h 59 void **new_sp = (void**) old_sp[-1]; local
62 // pointer new_sp isn't clearly bogus
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;
77 if ((uintptr_t)new_sp & (sizeof(void *) - 1)) return NULL;
78 return new_sp;
stacktrace_powerpc-inl.h 54 void **new_sp = (void **) *old_sp; local
57 // pointer new_sp isn't clearly bogus
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;
72 if ((uintptr_t)new_sp & (sizeof(void *) - 1)) return NULL;
73 return new_sp;
stacktrace_x86-inl.h 146 void **new_sp = (void **) *old_sp; local
196 if (new_sp == reg_ebp &&
223 new_sp = reinterpret_cast<void **>(
233 // pointer new_sp isn't clearly bogus
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;
253 if ((uintptr_t)new_sp & (sizeof(void *) - 1)) return NULL
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
stacktrace_arm-inl.h 59 void **new_sp = (void**) old_sp[-1]; local
62 // pointer new_sp isn't clearly bogus
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;
77 if ((uintptr_t)new_sp & (sizeof(void *) - 1)) return NULL;
78 return new_sp;
stacktrace_powerpc-inl.h 54 void **new_sp = (void **) *old_sp; local
57 // pointer new_sp isn't clearly bogus
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;
72 if ((uintptr_t)new_sp & (sizeof(void *) - 1)) return NULL;
73 return new_sp;
stacktrace_x86-inl.h 143 void **new_sp = (void **) *old_sp; local
193 if (new_sp == reg_ebp &&
220 new_sp = reinterpret_cast<void **>(
230 // pointer new_sp isn't clearly bogus
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;
250 if ((uintptr_t)new_sp & (sizeof(void *) - 1)) return NULL
    [all...]
  /art/compiler/dex/quick/mips/
call_mips.cc 309 RegStorage new_sp = AllocTemp(); local
341 OpRegRegImm(kOpSub, new_sp, rs_rMIPS_SP, frame_sub);
342 LIR* branch = OpCmpBranch(kCondUlt, new_sp, check_reg, nullptr);
345 OpRegCopy(rs_rMIPS_SP, new_sp); // Establish stack
  /external/chromium_org/v8/src/arm/
simulator-arm.cc 3818 int new_sp = get_register(sp) - sizeof(uintptr_t); local
    [all...]
  /external/chromium_org/v8/src/arm64/
simulator-arm64.cc 314 intptr_t new_sp = sp() - 2 * kXRegSize; local
316 reinterpret_cast<uintptr_t*>(new_sp + kXRegSize);
318 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(new_sp);
320 set_sp(new_sp);
321 return new_sp;
    [all...]

Completed in 276 milliseconds