Searched refs:zrc (Results 1 - 1 of 1) sorted by relevance

/external/elfutils/libelf/
H A Delf_compress.c117 int zrc = deflateInit (&z, Z_BEST_COMPRESSION); local
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); local
232 while (z.avail_in > 0 && likely (zrc == Z_OK))
235 zrc = inflate (&z, Z_FINISH);
236 if (unlikely (zrc !
[all...]

Completed in 123 milliseconds