Searched refs:zrc (Results 1 – 1 of 1) sorted by relevance
113 int zrc = deflateInit (&z, Z_BEST_COMPRESSION); in __libelf_compress() local114 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() local243 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()[all …]