HomeSort by relevance Sort by last modified time
    Searched refs:new_sp (Results 1 - 16 of 16) 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/runtime/arch/arm/
context_arm.h 40 virtual void SetSP(uintptr_t new_sp) {
41 SetGPR(SP, new_sp);
  /art/runtime/arch/mips/
context_mips.h 38 virtual void SetSP(uintptr_t new_sp) {
39 SetGPR(SP, new_sp);
  /art/runtime/arch/x86/
context_x86.h 38 virtual void SetSP(uintptr_t new_sp) {
39 SetGPR(ESP, new_sp);
  /art/runtime/arch/
context.h 44 virtual void SetSP(uintptr_t new_sp) = 0;
  /art/compiler/dex/quick/mips/
call_mips.cc 342 int new_sp = AllocTemp(); local
352 OpRegRegImm(kOpSub, new_sp, rMIPS_SP, frame_size_ - (spill_count * 4));
353 GenRegRegCheck(kCondCc, new_sp, check_reg, kThrowStackOverflow);
354 OpRegCopy(rMIPS_SP, new_sp); // Establish stack
  /external/chromium_org/v8/src/mips/
simulator-mips.cc     [all...]
  /external/v8/src/mips/
simulator-mips.cc     [all...]
  /external/chromium_org/v8/src/arm/
simulator-arm.cc 3894 int new_sp = get_register(sp) - sizeof(uintptr_t); local
    [all...]
  /external/v8/src/arm/
simulator-arm.cc 3415 int new_sp = get_register(sp) - sizeof(uintptr_t); local
    [all...]
  /cts/suite/pts/deviceTests/browserbench/assets/octane/
mandreel.js     [all...]

Completed in 506 milliseconds