Home
last modified time | relevance | path

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

/external/elfutils/libelf/
Delf_compress.c117 int zrc = deflateInit (&z, Z_BEST_COMPRESSION); in __libelf_compress() local
118 if (zrc != Z_OK) in __libelf_compress()
166 zrc = deflate (&z, flush); in __libelf_compress()
167 if (zrc == Z_STREAM_ERROR) in __libelf_compress()
202 zrc = deflateEnd (&z); in __libelf_compress()
203 if (zrc != Z_OK) in __libelf_compress()
231 int zrc = inflateInit (&z); in __libelf_decompress() local
232 while (z.avail_in > 0 && likely (zrc == Z_OK)) in __libelf_decompress()
235 zrc = inflate (&z, Z_FINISH); in __libelf_decompress()
236 if (unlikely (zrc != Z_STREAM_END)) in __libelf_decompress()
[all …]