Searched refs:setjmp (Results 1 - 25 of 135) sorted by relevance

123456

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/include/asm/
H A Dsetjmp.h15 extern long setjmp(long *);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/
H A Dplural-eval.h29 #include <setjmp.h>
31 /* Some platforms don't have the sigjmp_buf type in <setjmp.h>. */
35 # define sigsetjmp(env,savesigs) setjmp (env)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/include/shared/
H A Dlongjmp.h7 extern int setjmp(jmp_buf);
18 n = setjmp(*buf); \
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/sys-i386/
H A Dsetjmp.S2 # arch/i386/setjmp.S
4 # setjmp/longjmp for the i386 architecture
19 .globl setjmp
20 .type setjmp, @function
21 setjmp: label
38 .size setjmp,.-setjmp
H A Dbugs.c36 if (setjmp(cmov_test_return) == 0) {
H A DMakefile6 ptrace_user.o setjmp.o signal.o stub.o stub_segv.o syscalls.o sysrq.o \
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/sys-x86_64/
H A Dsetjmp.S2 # arch/x86_64/setjmp.S
4 # setjmp/longjmp for the x86-64 architecture
21 .globl setjmp
22 .type setjmp, @function
23 setjmp: label
37 .size setjmp,.-setjmp
H A DMakefile8 setjmp.o signal.o stub.o stub_segv.o syscalls.o syscall_table.o \
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/lib/replace/system/
H A Dwait.h40 #include <setjmp.h>
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/unzip60/windll/
H A Dwindll.h14 #include <setjmp.h>
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libpng/libpng-1.2.50/contrib/visupng/
H A Dcexcept.h194 #include <setjmp.h>
205 /* the calls to setjmp() and longjmp(). A wrapper struct is used to */
216 if (setjmp(exception__env) == 0) { \
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/os-Linux/sys-i386/
H A Dtask_size.c30 if (setjmp(buf) == 0)
47 if (setjmp(buf) == 0) {
55 if (setjmp(buf) == 0) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Dcpu.cpp13 #include <setjmp.h>
61 if (setjmp(s_jmpNoCPUID))
128 if (setjmp(s_jmpNoSSE2))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/expat-2.0.1/tests/
H A Dminicheck.c10 #include <setjmp.h>
125 if (setjmp(env)) {
132 if (setjmp(env)) {
140 if (setjmp(env)) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/
H A Ds390xcap.c4 #include <setjmp.h>
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/expat-2.0.1/tests/
H A Dminicheck.c10 #include <setjmp.h>
125 if (setjmp(env)) {
132 if (setjmp(env)) {
140 if (setjmp(env)) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/
H A Ds390xcap.c4 #include <setjmp.h>
H A Darmcap.c4 #include <setjmp.h>
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libpng/libpng-1.2.50/contrib/gregbook/
H A Dreadpng.c118 /* 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))) {
H A Dwritepng.c59 #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() an
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/jpeg-7/
H A Dexample.c29 * <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 erro
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zip30/macos/
H A Dosdep.h17 #include <setjmp.h>
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ncftp-3.2.5/source/sio/
H A Dsyshdrs.h109 # include <setjmp.h>
209 # define SSetjmp(a) setjmp(a)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/unzip60/wince/
H A Dwince.h250 // The emulation runtime library lacks a required element for setjmp/longjmp,
252 # undef setjmp macro
253 # define setjmp(buf) 0 macro
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/netkit-ftp-0.18-pre1/ftp/
H A Dftp_var.h41 #include <setjmp.h>

Completed in 207 milliseconds

123456