HomeSort by relevance Sort by last modified time
    Searched full:setjmp (Results 126 - 150 of 639) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/openssl/crypto/
s390xcap.c 4 #include <setjmp.h>
  /external/skia/include/images/
SkJpegUtility.h 21 #include <setjmp.h>
  /external/libvpx/vp8/decoder/
onyxd_if.c 63 if (setjmp(pbi->common.error.jmp))
65 pbi->common.error.setjmp = 0;
70 pbi->common.error.setjmp = 1;
99 pbi->common.error.setjmp = 0;
295 if (setjmp(pbi->common.error.jmp))
305 pbi->common.error.setjmp = 0;
318 pbi->common.error.setjmp = 1;
339 pbi->common.error.setjmp = 0;
359 pbi->common.error.setjmp = 0;
376 pbi->common.error.setjmp = 0
    [all...]
  /system/extras/tests/bionic/libstdc++/
test_csetjmp.cpp 47 #ifndef setjmp
48 #error "setjmp must be a macro"
  /external/webkit/Source/WebCore/platform/image-encoders/
JPEGImageEncoder.cpp 29 #include <setjmp.h>
108 // rowBuffer must be defined here so that its destructor is always called even when "setjmp" catches an error.
111 if (setjmp(err.m_setjmpBuffer))
  /bionic/libc/arch-mips/bionic/
sigsetjmp.S 36 #include <machine/setjmp.h>
56 1: LA t9, setjmp
setjmp.S 1 /* $OpenBSD: setjmp.S,v 1.5 2005/08/07 16:40:15 espie Exp $ */
37 * setjmp, longjmp implementation for libc. this code depends
59 NON_LEAF(setjmp, FRAMESZ, ra)
62 SETUP_GP64(GPOFF, setjmp)
140 END(setjmp)
  /external/freetype/include/freetype/config/
ftstdlib.h 155 #include <setjmp.h>
162 #define ft_setjmp( b ) setjmp( *(jmp_buf*) &(b) ) /* same thing here */
  /frameworks/av/cmds/stagefright/
jpeg.cpp 18 #include <setjmp.h>
54 if (setjmp(sf_err.longjmp_buffer)) {
  /bionic/libc/unistd/
sigsetmask.c 30 /* called from setjmp assembly fragment */
sigblock.c 30 /* this function is called from the ARM assembly setjmp fragments */
  /external/libpng/
TODO 9 Improve setjmp/longjmp usage or remove it in favor of returning error codes.
  /external/valgrind/main/include/
pub_tool_libcsetjmp.h 3 /*--- A minimal setjmp/longjmp facility. pub_tool_libcsetjmp.h ---*/
36 // PURPOSE: Provides a minimal setjmp/longjmp facility, that saves/
41 /* This provides an extremely minimal setjmp/longjmp facility, in
53 #include <setjmp.h>
  /external/valgrind/main/memcheck/tests/
badjump2.c 2 #include <setjmp.h>
  /external/libpng/contrib/gregbook/
writepng.c 59 #include "png.h" /* libpng header; includes zlib.h and setjmp.h */
104 /* setjmp() must be called in every function that calls a PNG-writing
109 if (setjmp(mainprog_ptr->jmpbuf)) {
263 /* as always, setjmp() must be called in every function that calls a
266 if (setjmp(mainprog_ptr->jmpbuf)) {
301 /* as always, setjmp() must be called in every function that calls a
304 if (setjmp(mainprog_ptr->jmpbuf)) {
331 /* as always, setjmp() must be called in every function that calls a
334 if (setjmp(mainprog_ptr->jmpbuf)) {
375 * setjmp() and longjmp() are called from the same code, they ar
    [all...]
readpng.c 118 /* setjmp() must be called in every function that calls a PNG-reading
121 if (setjmp(png_jmpbuf(png_ptr))) {
159 /* setjmp() must be called in every function that calls a PNG-reading
162 if (setjmp(png_jmpbuf(png_ptr))) {
213 /* setjmp() must be called in every function that calls a PNG-reading
216 if (setjmp(png_jmpbuf(png_ptr))) {
  /external/llvm/lib/Transforms/Utils/
LowerInvoke.cpp 22 // really expensive. It basically inserts setjmp/longjmp calls to emulate the
144 // VisualStudio defines setjmp as _setjmp
145 #if defined(_MSC_VER) && defined(setjmp) && \
147 # pragma push_macro("setjmp")
148 # undef setjmp macro
152 SetJmpFn = Intrinsic::getDeclaration(&M, Intrinsic::setjmp);
156 # pragma pop_macro("setjmp")
409 // inserts setjmp calls into the entries of functions with invoke instructions
413 // setjmp stuff on the early exit path. This requires a bit of dataflow, but
416 // If we have an invoke instruction, insert a setjmp that dominates al
    [all...]
  /external/llvm/cmake/
config-ix.cmake 57 check_include_file(setjmp.h HAVE_SETJMP_H)
121 check_symbol_exists(longjmp setjmp.h HAVE_LONGJMP)
122 check_symbol_exists(setjmp setjmp.h HAVE_SETJMP)
123 check_symbol_exists(siglongjmp setjmp.h HAVE_SIGLONGJMP)
124 check_symbol_exists(sigsetjmp setjmp.h HAVE_SIGSETJMP)
  /bionic/libc/arch-arm/include/machine/
setjmp.h 30 * machine/setjmp.h: machine dependent setjmp-related information.
  /dalvik/vm/mterp/x86/
entry.S 83 movl offThread_bailPtr(%ecx),%esp # Restore "setjmp" esp
85 addl $$(FRAME_SIZE-4), %ebp # Restore %ebp at point of setjmp
  /development/ndk/platforms/android-3/arch-arm/include/machine/
setjmp.h 30 * machine/setjmp.h: machine dependent setjmp-related information.
  /external/valgrind/main/coregrind/
pub_core_libcsetjmp.h 3 /*--- A minimal setjmp/longjmp facility. pub_core_libcsetjmp.h ---*/
36 // PURPOSE: Provides a minimal setjmp/longjmp facility, that saves/
  /frameworks/base/cmds/screenshot/
screenshot.c 55 if (setjmp(png_jmpbuf(png))) {
56 ALOGE("failed png setjmp\n");
  /bionic/libc/stdlib/
setjmperr.c 38 #include <setjmp.h>
  /external/clang/include/clang/Basic/
Builtins.def 82 // j -> returns_twice (like setjmp)
716 LIBBUILTIN(longjmp, "vJi", "fr", "setjmp.h", ALL_LANGUAGES)
739 // POSIX setjmp.h
741 // In some systems setjmp is a macro that expands to _setjmp. We undefine
743 #undef setjmp
744 LIBBUILTIN(_setjmp, "iJ", "fj", "setjmp.h", ALL_LANGUAGES)
745 LIBBUILTIN(__sigsetjmp, "iSJi", "fj", "setjmp.h", ALL_LANGUAGES)
746 LIBBUILTIN(setjmp, "iJ", "fj", "setjmp.h", ALL_LANGUAGES)
747 LIBBUILTIN(sigsetjmp, "iSJi", "fj", "setjmp.h", ALL_LANGUAGES
    [all...]

Completed in 1178 milliseconds

1 2 3 4 56 7 8 91011>>