Lines Matching refs:zrc
111 int zrc = deflateInit (&z, Z_BEST_COMPRESSION); in __libelf_compress() local
112 if (zrc != Z_OK) in __libelf_compress()
161 zrc = deflate (&z, flush); in __libelf_compress()
162 if (zrc == Z_STREAM_ERROR) in __libelf_compress()
197 if (zrc != Z_STREAM_END) in __libelf_compress()
239 int zrc = inflateInit (&z); in __libelf_decompress() local
240 while (z.avail_in > 0 && likely (zrc == Z_OK)) in __libelf_decompress()
243 zrc = inflate (&z, Z_FINISH); in __libelf_decompress()
244 if (unlikely (zrc != Z_STREAM_END)) in __libelf_decompress()
246 zrc = Z_DATA_ERROR; in __libelf_decompress()
249 zrc = inflateReset (&z); in __libelf_decompress()
252 if (unlikely (zrc != Z_OK) || unlikely (z.avail_out != 0)) in __libelf_decompress()