Lines Matching refs:ret
325 int ret = inflateInit2(&strm, -15); in ReadZip() local
329 ret = inflate(&strm, Z_NO_FLUSH); in ReadZip()
330 if (ret != Z_STREAM_END) { in ReadZip()
331 printf("failed to inflate \"%s\"; %d\n", curr->filename, ret); in ReadZip()
451 int ret = inflateInit2(&strm, -15); in ReadImage() local
456 ret = inflate(&strm, Z_NO_FLUSH); in ReadImage()
457 if (ret < 0) { in ReadImage()
470 } while (ret != Z_STREAM_END); in ReadImage()
553 int ret; in TryReconstruction() local
554 ret = deflateInit2(&strm, chunk->level, chunk->method, chunk->windowBits, in TryReconstruction()
559 ret = deflate(&strm, Z_FINISH); in TryReconstruction()
568 } while (ret != Z_STREAM_END); in TryReconstruction()