/external/libjpeg-turbo/ |
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/libpng/contrib/examples/ |
iccfrompng.c | 23 #include <setjmp.h> 52 if (setjmp(png_jmpbuf(png_ptr)))
|
/external/libvpx/libvpx/vp9/decoder/ |
vp9_decoder.c | 85 if (setjmp(cm->error.jmp)) { 86 cm->error.setjmp = 0; 91 cm->error.setjmp = 1; 119 cm->error.setjmp = 0; 329 if (setjmp(cm->error.jmp)) { 333 cm->error.setjmp = 0; 374 cm->error.setjmp = 1; 411 cm->error.setjmp = 0;
|
/external/valgrind/memcheck/tests/ |
descr_belowsp.c | 11 #include <setjmp.h> 109 if (setjmp(goback)) {
|
/external/pdfium/core/src/fxcodec/codec/ |
fx_codec_jpeg.cpp | 7 #include <setjmp.h> 269 if (setjmp(mark) == -1) { 282 if (setjmp(mark) == -1) { 366 if (setjmp(m_JmpBuf) == -1) { 374 if (setjmp(m_JmpBuf) == -1) { 482 if (setjmp(m_JmpBuf) == -1) { 500 if (setjmp(m_JmpBuf) == -1) 603 if (setjmp(p->m_JumpMark) == -1) { 647 if (setjmp(p->m_JumpMark) == -1) { 667 if (setjmp(p->m_JumpMark) == -1) [all...] |
/cts/tests/tests/os/jni/ |
android_os_cts_CpuInstructions.cpp | 20 #include <setjmp.h>
|
android_os_cts_TaggedPointer.cpp | 19 #include <setjmp.h>
|
/external/cmockery/cmockery_0_1_2/src/example/ |
key_value_test.c | 18 #include <setjmp.h>
|
/external/compiler-rt/lib/asan/tests/ |
asan_test_utils.h | 37 # include <setjmp.h>
|
/external/compiler-rt/lib/tsan/rtl/ |
tsan_rtl_aarch64.S | 6 .type setjmp, @function 7 setjmp: label 25 // SP pointer mangling (see glibc setjmp) 43 // tail jump to libc setjmp 50 .size setjmp, .-setjmp 73 // SP pointer mangling (see glibc setjmp) 91 // tail jump to libc setjmp 123 // SP pointer mangling (see glibc setjmp) 175 // SP pointer mangling (see glibc setjmp) [all...] |
tsan_rtl_amd64.S | 172 .globl ASM_TSAN_SYMBOL_INTERCEPTOR(setjmp) 173 ASM_TYPE_FUNCTION(ASM_TSAN_SYMBOL_INTERCEPTOR(setjmp)) 174 ASM_TSAN_SYMBOL_INTERCEPTOR(setjmp): 190 xor %fs:0x30, %rsi // magic mangling of rsp (see libc setjmp) 201 // tail jump to libc setjmp 207 jmp ASM_TSAN_SYMBOL(setjmp) 210 ASM_SIZE(ASM_TSAN_SYMBOL_INTERCEPTOR(setjmp)) 231 xor %fs:0x30, %rsi // magic mangling of rsp (see libc setjmp) 242 // tail jump to libc setjmp 279 xor %fs:0x30, %rsi // magic mangling of rsp (see libc setjmp) [all...] |
/external/libpng/contrib/gregbook/ |
writepng.c | 60 #include "png.h" /* libpng header, includes setjmp.h */ 105 /* setjmp() must be called in every function that calls a PNG-writing 111 if (setjmp(mainprog_ptr->jmpbuf)) { 265 /* as always, setjmp() must be called in every function that calls a 268 if (setjmp(mainprog_ptr->jmpbuf)) { 303 /* as always, setjmp() must be called in every function that calls a 306 if (setjmp(mainprog_ptr->jmpbuf)) { 333 /* as always, setjmp() must be called in every function that calls a 336 if (setjmp(mainprog_ptr->jmpbuf)) { 377 * setjmp() and longjmp() are called from the same code, they ar [all...] |
/external/libunwind/src/setjmp/ |
longjmp.c | 31 #include <setjmp.h> 41 /* Starting with glibc-2.4, {sig,}setjmp in GLIBC obfuscates the
|
siglongjmp.c | 28 #include <setjmp.h> 41 /* Starting with glibc-2.4, {sig,}setjmp in GLIBC obfuscates the
|
/external/valgrind/helgrind/tests/ |
safe-pthread.h | 3 #include <setjmp.h>
|
/external/valgrind/include/ |
pub_tool_libcsetjmp.h | 3 /*--- A minimal setjmp/longjmp facility. pub_tool_libcsetjmp.h ---*/ 38 // PURPOSE: Provides a minimal setjmp/longjmp facility, that saves/ 43 /* This provides an extremely minimal setjmp/longjmp facility, in 55 #include <setjmp.h>
|
/hardware/intel/common/libva/test/decode/ |
tinyjpeg-internal.h | 39 #include <setjmp.h>
|
/ndk/tests/device/issue19851-sigsetjmp/jni/ |
issue19851-sigsetjmp.c | 19 #include <setjmp.h>
|
/ndk/tests/device/test-cpufeatures/jni/ |
test_arm_idiv.c | 17 #include <setjmp.h>
|
/packages/apps/Gallery2/jni_jpegstream/src/ |
jpeg_reader.cpp | 21 #include <setjmp.h> 53 if (setjmp(mErrorManager.setjmp_buf)) { 125 if (setjmp(mErrorManager.setjmp_buf)) { 243 if (setjmp(mErrorManager.setjmp_buf)) {
|
/external/libvpx/libvpx/vp8/decoder/ |
onyxd_if.c | 77 if (setjmp(pbi->common.error.jmp)) 79 pbi->common.error.setjmp = 0; 84 pbi->common.error.setjmp = 1; 98 pbi->common.error.setjmp = 0; 340 if (setjmp(pbi->common.error.jmp)) 354 pbi->common.error.setjmp = 1; 407 pbi->common.error.setjmp = 0;
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/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; 84 pbi->common.error.setjmp = 0; 341 if (setjmp(pbi->common.error.jmp)) 355 pbi->common.error.setjmp = 1; 417 pbi->common.error.setjmp = 0;
|
/bionic/libc/arch-x86/bionic/ |
setjmp.S | 46 // 7 sigflag/cookie setjmp cookie in top 31 bits, signal mask flag in low bit 80 ENTRY(setjmp) function 84 END(setjmp) 103 // Record the setjmp cookie and whether or not we're saving the signal mask. 122 // Fetch the setjmp cookie and clear the signal flag bit.
|
/bionic/libc/arch-x86_64/bionic/ |
setjmp.S | 51 // 8 sigflag/cookie setjmp cookie in top 31 bits, signal mask flag in low bit 93 ENTRY(setjmp) function 96 END(setjmp) 110 // Record setjmp cookie and whether or not we're saving the signal mask. 171 // Fetch the setjmp cookie and clear the signal flag bit.
|
/external/e2fsprogs/lib/ss/ |
listen.c | 21 #include <setjmp.h> 68 setjmp(listen_jmpb);
|