Searched refs:retcode (Results 1 – 6 of 6) sorted by relevance
| /plan9/sys/src/cmd/gs/src/ |
| H A D | iscan.c | 396 int retcode = 0; in scan_token() local 408 { retcode = gs_note_error(code); goto sret; } in scan_token() 413 else if ( (retcode = ref_stack_push(&o_stack, 1)) >= 0 )\ in scan_token() 450 return retcode; in scan_token() 469 retcode = (*sstate.s_ss.binary.cont) in scan_token() 472 if (retcode == scan_Refill) in scan_token() 510 retcode = name_ref(imemory, s1, 1, myref, 1); /* can't fail */ in scan_token() 550 retcode = scan_Refill; in scan_token() 562 retcode = dynamic_grow(&da, da.next, max_string_size); in scan_token() 563 if (retcode == e_VMerror) { in scan_token() [all …]
|
| /plan9/sys/src/cmd/gs/jpeg/ |
| H A D | jdapimin.c | 243 int retcode; in jpeg_read_header() local 249 retcode = jpeg_consume_input(cinfo); in jpeg_read_header() 251 switch (retcode) { in jpeg_read_header() 253 retcode = JPEG_HEADER_OK; in jpeg_read_header() 263 retcode = JPEG_HEADER_TABLES_ONLY; in jpeg_read_header() 270 return retcode; in jpeg_read_header() 289 int retcode = JPEG_SUSPENDED; in jpeg_consume_input() local 301 retcode = (*cinfo->inputctl->consume_input) (cinfo); in jpeg_consume_input() 302 if (retcode == JPEG_REACHED_SOS) { /* Found SOS, prepare to decompress */ in jpeg_consume_input() 311 retcode = JPEG_REACHED_SOS; in jpeg_consume_input() [all …]
|
| H A D | jdtrans.c | 55 int retcode; in jpeg_read_coefficients() local 60 retcode = (*cinfo->inputctl->consume_input) (cinfo); in jpeg_read_coefficients() 61 if (retcode == JPEG_SUSPENDED) in jpeg_read_coefficients() 63 if (retcode == JPEG_REACHED_EOI) in jpeg_read_coefficients() 67 (retcode == JPEG_ROW_COMPLETED || retcode == JPEG_REACHED_SOS)) { in jpeg_read_coefficients()
|
| H A D | jdapistd.c | 55 int retcode; in jpeg_start_decompress() local 60 retcode = (*cinfo->inputctl->consume_input) (cinfo); in jpeg_start_decompress() 61 if (retcode == JPEG_SUSPENDED) in jpeg_start_decompress() 63 if (retcode == JPEG_REACHED_EOI) in jpeg_start_decompress() 67 (retcode == JPEG_ROW_COMPLETED || retcode == JPEG_REACHED_SOS)) { in jpeg_start_decompress()
|
| /plan9/sys/src/cmd/sam/ |
| H A D | shell.c | 17 int retcode; in plan9() local 67 if(retcode=!setjmp(mainloop)){ /* assignment = */ in plan9() 80 exits(retcode? "error" : 0); in plan9()
|
| H A D | sam.c | 458 int retcode; in readcmd() local 465 retcode = plan9(flist, '<', s, FALSE); in readcmd() 476 return retcode; in readcmd()
|