/external/clang/test/Sema/ |
implicit-builtin-decl.c | 57 void longjmp(); // expected-warning{{declaration of built-in function 'longjmp' requires inclusion of the header <setjmp.h>}}
|
/external/stlport/stlport/ |
stdlib.h | 53 /* on evc3/evc4 including stdlib.h also defines setjmp macro */
|
/ndk/sources/cxx-stl/stlport/stlport/ |
stdlib.h | 53 /* on evc3/evc4 including stdlib.h also defines setjmp macro */
|
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/ |
stdlib.h | 53 /* on evc3/evc4 including stdlib.h also defines setjmp macro */
|
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/ |
stdlib.h | 53 /* on evc3/evc4 including stdlib.h also defines setjmp macro */
|
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/ |
stdlib.h | 53 /* on evc3/evc4 including stdlib.h also defines setjmp macro */
|
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/ |
stdlib.h | 53 /* on evc3/evc4 including stdlib.h also defines setjmp macro */
|
/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/jpeg/ |
example.c | 29 * <setjmp.h> is used for the optional error recovery mechanism shown in 33 #include <setjmp.h> 239 * We use C's setjmp/longjmp facility to return control. This means that the 240 * routine which calls the JPEG library must first execute a setjmp() call to 242 * longjmp(). But we need to make the setjmp buffer accessible to the 272 /* Return control to the setjmp point */ 301 * so that the setjmp() error recovery below can assume the file is open. 316 /* Establish the setjmp return context for my_error_exit to use. */ 317 if (setjmp(jerr.setjmp_buffer)) { 396 * so as to simplify the setjmp error logic above. (Actually, I don' [all...] |
/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/qemu/distrib/jpeg-6b/ |
example.c | 29 * <setjmp.h> is used for the optional error recovery mechanism shown in 33 #include <setjmp.h> 239 * We use C's setjmp/longjmp facility to return control. This means that the 240 * routine which calls the JPEG library must first execute a setjmp() call to 242 * longjmp(). But we need to make the setjmp buffer accessible to the 272 /* Return control to the setjmp point */ 301 * so that the setjmp() error recovery below can assume the file is open. 316 /* Establish the setjmp return context for my_error_exit to use. */ 317 if (setjmp(jerr.setjmp_buffer)) { 396 * so as to simplify the setjmp error logic above. (Actually, I don' [all...] |
/external/valgrind/main/VEX/test/ |
test-amd64.c | 37 #include <setjmp.h> [all...] |
test-i386.c | 27 #include <setjmp.h> [all...] |
/external/libpng/ |
INSTALL | 131 __png.h__ already includes setjmp.h; 134 this means you have compiled another module that includes setjmp.h, 136 the same setjmp.h. If you are sure that you know what you are doing
|
/external/opencv/otherlibs/highgui/ |
grfmt_png.cpp | 146 if( setjmp( png_ptr->jmpbuf ) == 0 ) 195 if( setjmp(png_ptr->jmpbuf) == 0 ) 285 if( setjmp( png_ptr->jmpbuf ) == 0 )
|
/external/valgrind/main/docs/internals/ |
notes.txt | 74 * Dubious use of setjmp in run_thread_for_a_while -- I thought it 75 was only OK to use setjmp as the arg of an if: if (setjmp(...)) ...
|
/external/e2fsprogs/lib/ss/ |
list_rqs.c | 15 #include <setjmp.h>
|
listen.c | 21 #include <setjmp.h> 68 setjmp(listen_jmpb);
|
/external/llvm/test/CodeGen/ARM/ |
2011-12-19-sjlj-clobber.ll | 4 ; restored in a function with setjmp/longjmp EH. In particular, r6 was not
|
/external/llvm/test/Transforms/Mem2Reg/ |
2007-08-27-VolatileLoadsStores.ll | 3 ; Don't promote load volatiles/stores. This is really needed to handle setjmp/lonjmp properly.
|
/external/valgrind/main/none/tests/amd64/ |
faultstatus.c | 8 #include <setjmp.h>
|
/external/clang/test/CodeGenObjC/ |
exceptions.m | 52 // CHECK: [[SETJMP:%.*]] = call i32 @_setjmp 53 // CHECK-NEXT: [[CAUGHT:%.*]] = icmp eq i32 [[SETJMP]], 0
|
/external/qemu/ |
loadpng.c | 52 if(setjmp(png_jmpbuf(p))) { 185 if(setjmp(png_jmpbuf(p))) {
|
/external/webkit/Source/WebCore/platform/image-encoders/skia/ |
JPEGImageEncoder.cpp | 42 #include <setjmp.h> 118 if (setjmp(jumpBuffer)) {
|
/external/libpng/contrib/gregbook/ |
readpng2.c | 59 #include "png.h" /* libpng header; includes zlib.h and setjmp.h */ 195 /* setjmp() must be called in every function that calls a PNG-reading 200 if (setjmp(mainprog_ptr->jmpbuf)) { 357 /* setjmp() must be called in every function that calls a PNG-reading 360 if (setjmp(mainprog_ptr->jmpbuf)) { 386 /* setjmp() doesn't make sense here, because we'd either have to exit(), 631 * setjmp() and longjmp() are called from the same code, they are
|