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

  /bionic/libc/arch-x86/bionic/
setjmp.S 1 /* $OpenBSD: setjmp.S,v 1.8 2005/08/07 11:30:38 espie Exp $ */
37 * C library -- setjmp, longjmp
41 * setjmp(a)
46 ENTRY(setjmp) function
68 END(setjmp)
  /bionic/libc/arch-arm/bionic/
setjmp.S 1 /* $OpenBSD: setjmp.S,v 1.2 2004/02/01 05:40:52 drahn Exp $ */
2 /* $NetBSD: setjmp.S,v 1.5 2003/04/05 23:08:51 bjh21 Exp $ */
38 #include <machine/setjmp.h>
42 * C library -- setjmp, longjmp
46 * setjmp(a)
51 ENTRY(setjmp) function
82 END(setjmp)
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl_amd64.S 165 .globl setjmp
166 .type setjmp, @function
167 setjmp: label
176 xor %fs:0x30, %rsi // magic mangling of rsp (see libc setjmp)
184 // tail jump to libc setjmp
189 .size setjmp, .-setjmp
203 xor %fs:0x30, %rsi // magic mangling of rsp (see libc setjmp)
211 // tail jump to libc setjmp
237 xor %fs:0x30, %rsi // magic mangling of rsp (see libc setjmp)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
setjmp.h 20 * ISO C99 Standard: 7.13 Nonlocal jumps <setjmp.h>
30 #include <bits/setjmp.h> /* Get `__jmp_buf'. */
53 extern int setjmp (jmp_buf __env) __THROW;
69 # define setjmp(env) _setjmp (env) macro
71 /* We are in 4.3 BSD-compatibility mode in which `setjmp'
73 define a macro since ISO C says `setjmp' is one. */
74 # define setjmp(env) setjmp (env) macro
81 `setjmp' call there return VAL, or 1 if VAL is 0. */
116 #endif /* setjmp.h *
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
setjmp.h 20 * ISO C99 Standard: 7.13 Nonlocal jumps <setjmp.h>
30 #include <bits/setjmp.h> /* Get `__jmp_buf'. */
53 extern int setjmp (jmp_buf __env) __THROW;
69 # define setjmp(env) _setjmp (env) macro
71 /* We are in 4.3 BSD-compatibility mode in which `setjmp'
73 define a macro since ISO C says `setjmp' is one. */
74 # define setjmp(env) setjmp (env) macro
81 `setjmp' call there return VAL, or 1 if VAL is 0. */
116 #endif /* setjmp.h *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
setjmp.h 20 * ISO C99 Standard: 7.13 Nonlocal jumps <setjmp.h>
30 #include <bits/setjmp.h> /* Get `__jmp_buf'. */
53 extern int setjmp (jmp_buf __env) __THROW;
69 # define setjmp(env) _setjmp (env) macro
71 /* We are in 4.3 BSD-compatibility mode in which `setjmp'
73 define a macro since ISO C says `setjmp' is one. */
74 # define setjmp(env) setjmp (env) macro
81 `setjmp' call there return VAL, or 1 if VAL is 0. */
116 #endif /* setjmp.h *
    [all...]
  /system/core/sh/
error.h 58 #include <setjmp.h>
110 * BSD setjmp saves the signal mask, which violates ANSI C and takes time,
115 #define setjmp(jmploc) _setjmp(jmploc) macro
  /external/llvm/lib/CodeGen/
IntrinsicLowering.cpp 87 // 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", CI, CS.arg_begin(), CS.arg_end()
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 219 // VisualStudio defines setjmp as _setjmp
220 #if defined(_MSC_VER) && defined(setjmp) && \
222 # pragma push_macro("setjmp")
223 # undef setjmp macro
227 case Intrinsic::setjmp:
231 # pragma pop_macro("setjmp")
  /external/llvm/lib/Transforms/Utils/
LowerInvoke.cpp 22 // really expensive. It basically inserts setjmp/longjmp calls to emulate the
141 // VisualStudio defines setjmp as _setjmp
142 #if defined(_MSC_VER) && defined(setjmp) && \
144 # pragma push_macro("setjmp")
145 # undef setjmp macro
149 SetJmpFn = Intrinsic::getDeclaration(&M, Intrinsic::setjmp);
153 # pragma pop_macro("setjmp")
406 // inserts setjmp calls into the entries of functions with invoke instructions
410 // setjmp stuff on the early exit path. This requires a bit of dataflow, but
413 // If we have an invoke instruction, insert a setjmp that dominates al
    [all...]
  /external/libvpx/libvpx/vpx/internal/
vpx_codec_internal.h 446 #include <setjmp.h>
451 int setjmp; member in struct:vpx_internal_error_info
474 if (info->setjmp)
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 4447 # undef setjmp macro
    [all...]

Completed in 417 milliseconds