Lines Matching refs:zrc
113 int zrc = deflateInit (&z, Z_BEST_COMPRESSION); in __libelf_compress() local
114 if (zrc != Z_OK) in __libelf_compress()
164 zrc = deflate (&z, flush); in __libelf_compress()
165 if (zrc == Z_STREAM_ERROR) in __libelf_compress()
200 zrc = deflateEnd (&z); in __libelf_compress()
201 if (zrc != Z_OK) in __libelf_compress()
242 int zrc = inflateInit (&z); in __libelf_decompress() local
243 while (z.avail_in > 0 && likely (zrc == Z_OK)) in __libelf_decompress()
246 zrc = inflate (&z, Z_FINISH); in __libelf_decompress()
247 if (unlikely (zrc != Z_STREAM_END)) in __libelf_decompress()
249 zrc = Z_DATA_ERROR; in __libelf_decompress()
252 zrc = inflateReset (&z); in __libelf_decompress()
254 if (likely (zrc == Z_OK)) in __libelf_decompress()
255 zrc = inflateEnd (&z); in __libelf_decompress()
257 if (unlikely (zrc != Z_OK) || unlikely (z.avail_out != 0)) in __libelf_decompress()