Lines Matching refs:setjmp
137 * SETJMP, LONGJMP, JMP_BUF: On some machines/environments a longjump equivalent is
139 * in place of plain setjmp. These macros will make it easier. It is useless
152 #define SETJMP(jbuf) setjmp(jbuf)
190 #include <setjmp.h>
2377 return(SETJMP(sp->exit_jmpbuf)?0:(jpeg_create_decompress(cinfo),1));
2385 return(SETJMP(sp->exit_jmpbuf)?0:(jpeg_read_header(cinfo,require_image),1));
2393 return(SETJMP(sp->exit_jmpbuf)?0:(jpeg_start_decompress(cinfo),1));
2401 return(SETJMP(sp->exit_jmpbuf)?0:(jpeg_read_scanlines(cinfo,scanlines,max_lines),1));
2409 return(SETJMP(sp->exit_jmpbuf)?0:(jpeg_read_raw_data(cinfo,data,max_lines),1));