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>
2397 return(SETJMP(sp->exit_jmpbuf)?0:(jpeg_create_decompress(cinfo),1));
2405 return(SETJMP(sp->exit_jmpbuf)?0:(jpeg_read_header(cinfo,require_image),1));
2413 return(SETJMP(sp->exit_jmpbuf)?0:(jpeg_start_decompress(cinfo),1));
2421 return(SETJMP(sp->exit_jmpbuf)?0:(jpeg_read_scanlines(cinfo,scanlines,max_lines),1));
2429 return(SETJMP(sp->exit_jmpbuf)?0:(jpeg_read_raw_data(cinfo,data,max_lines),1));