HomeSort by relevance Sort by last modified time
    Searched refs:setjmp (Results 176 - 200 of 332) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/valgrind/none/tests/amd64/
faultstatus.c 8 #include <setjmp.h>
  /external/valgrind/none/tests/x86/
faultstatus.c 8 #include <setjmp.h>
  /bionic/libc/arch-arm/
arm.mk 30 arch-arm/bionic/setjmp.S \
  /bionic/libc/arch-arm/bionic/
setjmp.S 58 // 0 sigflag/cookie setjmp cookie in top 31 bits, signal mask flag in low bit
78 ENTRY(setjmp) function
81 END(setjmp)
131 // Save the setjmp cookie for later.
136 // Record the setjmp cookie and whether or not we're saving the signal mask.
247 // Save the return value/address and check the setjmp cookie.
  /bionic/libc/arch-arm64/
arm64.mk 44 arch-arm64/bionic/setjmp.S \
  /bionic/libc/arch-arm64/bionic/
setjmp.S 45 // 0 sigflag/cookie setjmp cookie in top 31 bits, signal mask flag in low bit
101 ENTRY(setjmp) function
104 END(setjmp)
  /bionic/libc/arch-x86_64/
x86_64.mk 27 arch-x86_64/bionic/setjmp.S \
  /external/clang/test/Sema/
uninit-variables.c 471 extern int setjmp(jmp_buf env); // implicitly returns_twice
480 if (setjmp(env) == 0) {
  /external/deqp/framework/common/
tcuImageIO.cpp 97 if (setjmp(png_jmpbuf(png_ptr)))
175 if (setjmp(png_jmpbuf(pngPtr)))
  /external/libpng/contrib/examples/
pngpixel.c 23 #include <setjmp.h> /* required for error handling */
143 /* This program uses the default, <setjmp.h> based, libpng error handling
145 * setjmp and is changed after the call to setjmp returns successfully must
162 * stored <setjmp.h> style jmp_buf which is held in a png_struct and
180 if (setjmp(png_jmpbuf(png_ptr)) == 0)
215 * signal the error and return control to the setjmp above.
  /external/libpng/
example.c 204 * standard way is to use the ANSI-C (C90) <setjmp.h> interface to establish a
315 /* Set error handling if you are using the setjmp/longjmp method (this is
320 if (setjmp(png_jmpbuf(png_ptr)))
633 if (setjmp(png_jmpbuf((*png_ptr))))
661 if (setjmp(png_jmpbuf((*png_ptr))))
803 if (setjmp(png_jmpbuf(png_ptr)))
    [all...]
  /external/libunwind/tests/
test-setjmp.c 24 /* The setjmp()/longjmp(), sigsetjmp()/siglongjmp(). */
28 #include <setjmp.h>
60 if ((ret = setjmp (jbuf)))
63 printf ("%s: secondary setjmp () return, ret=%d\n",
67 fprintf (stderr, "%s: setjmp() returned %d, expected %d\n",
74 printf ("%s.%d: done with setjmp(); calling children\n",
  /external/llvm/lib/Support/
CrashRecoveryContext.cpp 16 #include <setjmp.h>
323 if (setjmp(CRCI->JumpBuffer) != 0) {
  /external/mesa3d/src/gallium/auxiliary/util/
u_cpu_detect.c 45 #include <setjmp.h>
126 if (setjmp(__lv_powerpc_jmpbuf)) {
  /external/valgrind/none/tests/ppc64/
twi_tdi.c 4 #include <setjmp.h>
21 if (setjmp(env_sigtrap)) {
  /external/valgrind/tests/
s390x_features.c 3 #include <setjmp.h>
53 if (setjmp(env)) {
  /external/zlib/src/contrib/blast/
blast.c 29 #include <setjmp.h> /* for setjmp(), longjmp(), and jmp_buf */
398 if (setjmp(s.env) != 0) /* if came back here via longjmp(), */
  /external/libvncserver/common/
turbojpeg.c 39 #include <setjmp.h>
441 if(setjmp(this->jerr.setjmp_buffer)) return -1;
468 if(setjmp(this->jerr.setjmp_buffer))
556 if(setjmp(this->jerr.setjmp_buffer))
652 if(setjmp(this->jerr.setjmp_buffer))
698 if(setjmp(this->jerr.setjmp_buffer))
769 if(setjmp(this->jerr.setjmp_buffer))
  /external/iputils/
tftpd.c 62 #include <setjmp.h>
369 (void) setjmp(timeoutbuf);
435 (void) setjmp(timeoutbuf);
  /external/libpng/contrib/libtests/
timepng.c 47 if (setjmp(png_jmpbuf(png_ptr)))
  /external/libvpx/libvpx/vp8/
vp8_dx_iface.c 408 if (setjmp(pbi->common.error.jmp))
410 pbi->common.error.setjmp = 0;
416 pbi->common.error.setjmp = 1;
485 pbi->common.error.setjmp = 0;
  /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", F.arg_begin(), F.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/opencv3/modules/imgcodecs/src/
grfmt_jpeg.cpp 53 #include <setjmp.h>
55 // the following defines are a hack to avoid multiple problems with frame ponter handling and setjmp
166 /* Return control to the setjmp point */
224 if( setjmp( state->jerr.setjmp_buffer ) == 0 )
404 if( setjmp( jerr->setjmp_buffer ) == 0 )
590 if( setjmp( jerr.setjmp_buffer ) == 0 )
  /external/pdfium/core/src/fxcodec/lbmp/
fx_bmp.h 7 #include <setjmp.h>
  /external/selinux/libsepol/cil/test/unit/
CuTest.h 27 #include <setjmp.h>

Completed in 1259 milliseconds

1 2 3 4 5 6 78 91011>>