Home
last modified time | relevance | path

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

/external/elfutils/libelf/
Delf_compress.c113 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()
[all …]
/external/oss-fuzz/projects/gnupg/
Dfuzzgnupg.diff83 (unsigned)bzs->avail_in, (unsigned)bzs->avail_out, zrc);
84 if( zrc == BZ_STREAM_END )
86 - else if( zrc != BZ_OK && zrc != BZ_PARAM_ERROR )
87 - log_fatal("bz2lib inflate problem: rc=%d\n", zrc );
88 + else if( zrc != BZ_OK && zrc != BZ_PARAM_ERROR ) {
90 + log_error("bz2lib inflate problem: rc=%d\n", zrc );
94 + log_fatal("bz2lib inflate problem: rc=%d\n", zrc );
97 else if (zrc == BZ_OK && eofseen
105 if( zrc == Z_STREAM_END )
107 else if( zrc != Z_OK && zrc != Z_BUF_ERROR ) {
[all …]