| /OK3568_Linux_fs/kernel/lib/zlib_dfltcc/ |
| H A D | dfltcc_deflate.c | 60 size_t avail_out = strm->avail_out; in dfltcc_cmpr() local 64 param, &strm->next_out, &avail_out, in dfltcc_cmpr() 67 strm->total_out += (strm->avail_out - avail_out); in dfltcc_cmpr() 69 strm->avail_out = avail_out; in dfltcc_cmpr() 166 if (strm->avail_out == 0) { in dfltcc_deflate() 278 if (strm->avail_in != 0 && strm->avail_out != 0) in dfltcc_deflate()
|
| H A D | dfltcc_inflate.c | 72 size_t avail_out = strm->avail_out; in dfltcc_xpnd() local 76 param, &strm->next_out, &avail_out, in dfltcc_xpnd() 79 strm->avail_out = avail_out; in dfltcc_xpnd()
|
| /OK3568_Linux_fs/u-boot/lib/ |
| H A D | gzip.c | 90 s.avail_out = left_len; in zzip() 98 dst += (left_len - s.avail_out); in zzip() 99 *lenp -= (left_len - s.avail_out); in zzip() 100 } else if (left_len - s.avail_out > 0) { in zzip() 102 left_len - s.avail_out); in zzip() 106 } while (s.avail_out == 0 && (*lenp > 0)); in zzip()
|
| H A D | gunzip.c | 233 s.avail_out = szwritebuf; in gzwrite() 241 numfilled = szwritebuf - s.avail_out; in gzwrite() 264 } while (s.avail_out == 0); in gzwrite() 305 s.avail_out = dstlen; in zunzip() 309 (s.avail_in == 0 || s.avail_out == 0 || r != Z_BUF_ERROR)) { in zunzip()
|
| /OK3568_Linux_fs/kernel/fs/jffs2/ |
| H A D | compr_zlib.c | 96 def_strm.avail_out = *dstlen - (def_strm.total_out + STREAM_END_SPACE); in jffs2_zlib_compress() 98 (*sourcelen-def_strm.total_in), def_strm.avail_out); in jffs2_zlib_compress() 100 def_strm.avail_in, def_strm.avail_out); in jffs2_zlib_compress() 103 def_strm.avail_in, def_strm.avail_out, in jffs2_zlib_compress() 112 def_strm.avail_out += STREAM_END_SPACE; in jffs2_zlib_compress() 155 inf_strm.avail_out = destlen; in jffs2_zlib_decompress()
|
| /OK3568_Linux_fs/u-boot/lib/bzip2/ |
| H A D | bzlib.c | 392 if (s->strm->avail_out == 0) break; in copy_output_until_stop() 400 s->strm->avail_out--; in copy_output_until_stop() 593 if (s->strm->avail_out == 0) return; in unRLE_obuf_to_output_FAST() 599 s->strm->avail_out--; in unRLE_obuf_to_output_FAST() 645 unsigned int cs_avail_out = s->strm->avail_out; in unRLE_obuf_to_output_FAST() 718 s->strm->avail_out = cs_avail_out; in unRLE_obuf_to_output_FAST() 750 if (s->strm->avail_out == 0) return; in unRLE_obuf_to_output_SMALL() 756 s->strm->avail_out--; in unRLE_obuf_to_output_SMALL() 796 if (s->strm->avail_out == 0) return; in unRLE_obuf_to_output_SMALL() 802 s->strm->avail_out--; in unRLE_obuf_to_output_SMALL() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/ppp/ |
| H A D | ppp_deflate.c | 217 state->strm.avail_out = oavail = osize - olen; in z_compress() 233 if (state->strm.avail_out == 0) { in z_compress() 236 state->strm.avail_out = oavail = 1000000; in z_compress() 241 olen += oavail - state->strm.avail_out; in z_compress() 452 state->strm.avail_out = 1; in z_decompress() 467 if (state->strm.avail_out != 0) in z_decompress() 470 state->strm.avail_out = osize - PPP_HDRLEN; in z_decompress() 475 ++state->strm.avail_out; in z_decompress() 485 state->strm.avail_out = 1; in z_decompress() 502 olen = osize + overflow - state->strm.avail_out; in z_decompress()
|
| /OK3568_Linux_fs/kernel/tools/perf/util/ |
| H A D | lzma.c | 63 strm.avail_out = sizeof(buf_out); in lzma_decompress_to_file() 81 if (strm.avail_out == 0 || ret == LZMA_STREAM_END) { in lzma_decompress_to_file() 82 ssize_t write_size = sizeof(buf_out) - strm.avail_out; in lzma_decompress_to_file() 90 strm.avail_out = sizeof(buf_out); in lzma_decompress_to_file()
|
| H A D | zlib.c | 51 zs.avail_out = CHUNK_SIZE; in gzip_decompress_to_file() 65 len = CHUNK_SIZE - zs.avail_out; in gzip_decompress_to_file()
|
| /OK3568_Linux_fs/kernel/fs/isofs/ |
| H A D | compress.c | 52 .avail_out = 0, }; in zisofs_uncompress_block() 121 if (!stream.avail_out) { in zisofs_uncompress_block() 125 stream.avail_out = PAGE_SIZE - poffset; in zisofs_uncompress_block() 129 stream.avail_out = PAGE_SIZE; in zisofs_uncompress_block() 147 while (stream.avail_out && stream.avail_in) { in zisofs_uncompress_block() 166 stream.avail_out); in zisofs_uncompress_block() 173 if (!stream.avail_out) { in zisofs_uncompress_block()
|
| /OK3568_Linux_fs/kernel/fs/btrfs/ |
| H A D | zlib.c | 136 workspace->strm.avail_out = PAGE_SIZE; in zlib_compress_pages() 198 if (workspace->strm.avail_out == 0) { in zlib_compress_pages() 213 workspace->strm.avail_out = PAGE_SIZE; in zlib_compress_pages() 235 } else if (workspace->strm.avail_out == 0) { in zlib_compress_pages() 251 workspace->strm.avail_out = PAGE_SIZE; in zlib_compress_pages() 299 workspace->strm.avail_out = workspace->buf_size; in zlib_decompress_bio() 338 workspace->strm.avail_out = workspace->buf_size; in zlib_decompress_bio() 388 workspace->strm.avail_out = workspace->buf_size; in zlib_decompress() 443 workspace->strm.avail_out = workspace->buf_size; in zlib_decompress()
|
| /OK3568_Linux_fs/kernel/fs/squashfs/ |
| H A D | zlib_wrapper.c | 61 stream->avail_out = PAGE_SIZE; in zlib_uncompress() 86 if (stream->avail_out == 0) { in zlib_uncompress() 89 stream->avail_out = PAGE_SIZE; in zlib_uncompress()
|
| /OK3568_Linux_fs/kernel/lib/zlib_inflate/ |
| H A D | inflate.c | 128 copy = out - strm->avail_out; in zlib_updatewindow() 188 left = strm->avail_out; \ 199 strm->avail_out = left; \ 745 (state->wsize || (state->mode < CHECK && out != strm->avail_out))) in zlib_inflate() 749 out -= strm->avail_out; in zlib_inflate() 761 strm->avail_out != 0 && strm->avail_in == 0) in zlib_inflate() 789 uInt saved_ao = z->avail_out; in zlib_inflateIncomp() 795 z->avail_out = 0; in zlib_inflateIncomp() 801 z->avail_out = saved_ao; in zlib_inflateIncomp()
|
| H A D | infutil.c | 30 strm->avail_out = sz; in zlib_inflate_blob() 37 rc = sz - strm->avail_out; in zlib_inflate_blob()
|
| H A D | inffast.c | 100 beg = out - (start - strm->avail_out); in inflate_fast() 101 end = out + (strm->avail_out - 257); in inflate_fast() 321 strm->avail_out = (unsigned)(out < end ? in inflate_fast()
|
| /OK3568_Linux_fs/kernel/arch/arm/kernel/ |
| H A D | head-inflate-data.c | 51 strm->avail_out = _edata_loc - __data_loc; in __inflate_kernel_data() 57 rc = strm->avail_out; /* should be 0 */ in __inflate_kernel_data()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/ |
| H A D | compression.cpp | 52 deflate_stream.avail_out = sizeof(out); in compress() 87 inflate_stream.avail_out = sizeof(out); in decompress()
|
| /OK3568_Linux_fs/u-boot/lib/zlib/ |
| H A D | inffast.c | 111 beg = out - (start - strm->avail_out); in inflate_fast() 112 end = out + (strm->avail_out - 257); in inflate_fast() 335 strm->avail_out = (unsigned)(out < end ? in inflate_fast()
|
| H A D | deflate.c | 567 if (len > strm->avail_out) len = strm->avail_out; 574 strm->avail_out -= len; 598 if (strm->avail_out == 0) ERR_RETURN(strm, Z_BUF_ERROR); 787 if (strm->avail_out == 0) { 826 if (strm->avail_out == 0) { 855 if (strm->avail_out == 0) { 861 Assert(strm->avail_out > 0, "bug2"); 1448 if (s->strm->avail_out == 0) return (last) ? finish_started : need_more; \ 1713 if (s->strm->avail_out == 0) return need_more;
|
| /OK3568_Linux_fs/kernel/lib/zlib_deflate/ |
| H A D | defutil.h | 426 if (len > strm->avail_out) len = strm->avail_out; in flush_pending() 435 strm->avail_out -= len; in flush_pending()
|
| H A D | deflate.c | 347 if (strm->avail_out == 0) return Z_BUF_ERROR; in zlib_deflate() 378 if (strm->avail_out == 0) { in zlib_deflate() 416 if (strm->avail_out == 0) { in zlib_deflate() 445 if (strm->avail_out == 0) { in zlib_deflate() 451 Assert(strm->avail_out > 0, "bug2"); in zlib_deflate() 845 if (s->strm->avail_out == 0) return (eof) ? finish_started : need_more; \ 1107 if (s->strm->avail_out == 0) return need_more; in deflate_slow()
|
| /OK3568_Linux_fs/kernel/crypto/ |
| H A D | deflate.c | 192 stream->avail_out = *dlen; in __deflate_compress() 237 stream->avail_out = *dlen; in __deflate_decompress() 245 if (ret == Z_OK && !stream->avail_in && stream->avail_out) { in __deflate_decompress()
|
| /OK3568_Linux_fs/kernel/lib/ |
| H A D | decompress_inflate.c | 131 strm->avail_out = out_len; in __gunzip() 167 strm->avail_out = out_len; in __gunzip()
|
| /OK3568_Linux_fs/u-boot/fs/cramfs/ |
| H A D | uncompress.c | 41 stream.avail_out = 4096 * 2; in cramfs_uncompress_block()
|
| /OK3568_Linux_fs/kernel/fs/cramfs/ |
| H A D | uncompress.c | 39 stream.avail_out = dstlen; in cramfs_uncompress_block()
|