Home
last modified time | relevance | path

Searched refs:prev_fp (Results 1 – 2 of 2) sorted by relevance

/external/elfutils/backends/
Dx86_64_unwind.c61 Dwarf_Word prev_fp; in x86_64_unwind() local
62 if (!readfunc(fp, &prev_fp, arg)) in x86_64_unwind()
63 prev_fp = 0; in x86_64_unwind()
69 if (!setfunc(fpReg, 1, &prev_fp, arg)) in x86_64_unwind()
/external/libchrome/base/debug/
Dstack_trace.cc57 bool IsStackFrameValid(uintptr_t fp, uintptr_t prev_fp, uintptr_t stack_end) { in IsStackFrameValid() argument
60 if (fp <= prev_fp) return false; in IsStackFrameValid()
63 if (fp - prev_fp > 100000) return false; in IsStackFrameValid()