Searched defs:setjmp (Results 1 - 7 of 7) sorted by relevance

/external/libunwind/src/setjmp/
H A Dsetjmp.c27 #include <setjmp.h>
31 /* Why use K&R syntax here? setjmp() is often a macro and that
33 libunwind-version of setjmp() with the name of the actual function.
34 Using K&R syntax lets us keep the setjmp() macro while keeping the
35 syntax valid... This trick works provided setjmp() doesn't do
39 setjmp (env) function
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl_amd64.S166 .globl setjmp
167 .type setjmp, @function
168 setjmp: label
177 xor %fs:0x30, %rsi // magic mangling of rsp (see libc setjmp)
185 // tail jump to libc setjmp
190 .size setjmp, .-setjmp
204 xor %fs:0x30, %rsi // magic mangling of rsp (see libc setjmp)
212 // tail jump to libc setjmp
238 xor %fs:0x30, %rsi // magic mangling of rsp (see libc setjmp)
[all...]
/external/qemu/include/sysemu/
H A Dos-win32.h63 /* On w64, setjmp is implemented by _setjmp which needs a second parameter.
67 # undef setjmp macro
68 # define setjmp(env) _setjmp(env, NULL) macro
73 * in terms of setjmp/longjmp on Win32.
76 #define sigsetjmp(env, savemask) setjmp(env)
/external/llvm/lib/CodeGen/
H A DIntrinsicLowering.cpp87 // VisualStudio defines setjmp as _setjmp
88 #if defined(_MSC_VER) && defined(setjmp) && \
90 # pragma push_macro("setjmp")
91 # undef setjmp macro
101 case Intrinsic::setjmp:
102 EnsureFunctionExists(M, "setjmp", I->arg_begin(), I->arg_end(),
363 // The setjmp/longjmp intrinsics should only exist in the code if it was
366 // convert the call to an explicit setjmp or longjmp call.
367 case Intrinsic::setjmp: {
368 Value *V = ReplaceCallWith("setjmp", C
[all...]
/external/llvm/lib/Target/PowerPC/
H A DPPCCTRLoops.cpp227 // VisualStudio defines setjmp as _setjmp
228 #if defined(_MSC_VER) && defined(setjmp) && \
230 # pragma push_macro("setjmp")
231 # undef setjmp macro
235 case Intrinsic::setjmp:
239 # pragma pop_macro("setjmp")
/external/chromium_org/third_party/libvpx/source/libvpx/vpx/internal/
H A Dvpx_codec_internal.h418 #include <setjmp.h>
424 int setjmp; member in struct:vpx_internal_error_info
/external/libvpx/libvpx/vpx/internal/
H A Dvpx_codec_internal.h480 #include <setjmp.h>
486 int setjmp; member in struct:vpx_internal_error_info
509 if (info->setjmp)

Completed in 815 milliseconds