Lines Matching defs:rc
723 int rc;
726 rc = global->status_code;
728 return rc;
985 int rc;
996 rc = file->status_code;
1010 rc |= WRITE_ERROR;
1015 file->global->status_code |= rc;
1019 return rc; /* status code: non-zero on read or write error */
2029 int rc; /* Last return code */
2053 switch (zlib->rc)
2070 /* Output a message given a zlib rc */
2083 unexpected ? "unexpected " : "", zlib->rc, zlib_rc(zlib), reason);
2134 * IDAT SKP flevel file-bits z-rc compressed message file
2136 * z-rc is the zlib failure code; message is the error message with
2154 zlib->rc = inflateEnd(&zlib->z);
2156 if (zlib->rc != Z_OK)
2179 zlib->rc = inflateReset2(&zlib->z, 0);
2180 if (zlib->rc != Z_OK)
2225 zlib->rc = inflateInit2(&zlib->z, 0);
2226 if (zlib->rc != Z_OK)
2369 zlib->rc = inflate(&zlib->z, flush);
2372 switch (zlib->rc)
2418 } /* switch (inflate rc) */
2516 int rc;
2523 rc = zlib_advance(zlib, list->lengths[i]);
2525 switch (rc)
2569 return rc;
2584 int rc;
2588 rc = zlib_advance(zlib, chunk->chunk_length - zlib->rewrite_offset);
2596 return rc;
2624 int min_bits, max_bits, rc;
2627 rc = zlib_run(&zlib);
2629 switch (rc)
2690 rc = zlib_run(&zlib);
2692 switch (rc)
3578 volatile int rc;
3591 rc = setjmp(control->file.jmpbuf);
3592 if (rc == 0)
3644 return rc;
3650 int rc;
3660 rc = control_init(&control, global, file_name, out_name);
3662 if (rc == 0)
3663 rc = read_png(&control);
3665 rc |= control_end(&control);
3667 return rc;
3804 " chunk SKP comp-level file-bits zlib-rc compressed message file",
3817 " SKP: The chunk was skipped because of a zlib issue (zlib-rc) with",
3828 " zlib-rc: A zlib return code as a string (see zlib.h).",