Home | History | Annotate | Download | only in libelf

Lines Matching refs:zrc

117   int zrc = deflateInit (&z, Z_BEST_COMPRESSION);
118 if (zrc != Z_OK)
166 zrc = deflate (&z, flush);
167 if (zrc == Z_STREAM_ERROR)
202 zrc = deflateEnd (&z);
203 if (zrc != Z_OK)
231 int zrc = inflateInit (&z);
232 while (z.avail_in > 0 && likely (zrc == Z_OK))
235 zrc = inflate (&z, Z_FINISH);
236 if (unlikely (zrc != Z_STREAM_END))
238 zrc = Z_DATA_ERROR;
241 zrc = inflateReset (&z);
243 if (likely (zrc == Z_OK))
244 zrc = inflateEnd (&z);
246 if (unlikely (zrc != Z_OK) || unlikely (z.avail_out != 0))