/linux-4.1.27/fs/btrfs/ |
H A D | zlib.c | 81 unsigned long *total_out, zlib_compress_pages() 94 *total_out = 0; zlib_compress_pages() 104 workspace->strm.total_out = 0; zlib_compress_pages() 136 workspace->strm.total_out) { zlib_compress_pages() 168 if (workspace->strm.total_out > max_out) zlib_compress_pages() 193 if (workspace->strm.total_out >= workspace->strm.total_in) { zlib_compress_pages() 199 *total_out = workspace->strm.total_out; zlib_compress_pages() 223 size_t total_out = 0; zlib_decompress_biovec() local 235 workspace->strm.total_out = 0; zlib_decompress_biovec() 260 buf_start = total_out; zlib_decompress_biovec() 261 total_out = workspace->strm.total_out; zlib_decompress_biovec() 264 if (buf_start == total_out) zlib_decompress_biovec() 268 total_out, disk_start, zlib_decompress_biovec() 316 unsigned long total_out = 0; zlib_decompress() local 329 workspace->strm.total_out = 0; zlib_decompress() 355 buf_start = total_out; zlib_decompress() 356 total_out = workspace->strm.total_out; zlib_decompress() 358 if (total_out == buf_start) { zlib_decompress() 363 if (total_out <= start_byte) zlib_decompress() 366 if (total_out > start_byte && buf_start < start_byte) zlib_decompress() 74 zlib_compress_pages(struct list_head *ws, struct address_space *mapping, u64 start, unsigned long len, struct page **pages, unsigned long nr_dest_pages, unsigned long *out_pages, unsigned long *total_in, unsigned long *total_out, unsigned long max_out) zlib_compress_pages() argument
|
H A D | compression.h | 31 unsigned long *total_out, 36 unsigned long total_out, u64 disk_start, 63 unsigned long *total_out,
|
H A D | compression.c | 878 * total_out is used to return the total number of compressed bytes 889 unsigned long *total_out, btrfs_compress_pages() 902 total_in, total_out, btrfs_compress_pages() 975 * total_out is the last byte of the buffer 978 unsigned long total_out, u64 disk_start, btrfs_decompress_buf2page() 986 unsigned long working_bytes = total_out - buf_start; btrfs_decompress_buf2page() 998 if (total_out <= start_byte) btrfs_decompress_buf2page() 1005 if (total_out > start_byte && buf_start < start_byte) { btrfs_decompress_buf2page() 1042 if (total_out <= start_byte) btrfs_decompress_buf2page() 1050 if (total_out > start_byte && btrfs_decompress_buf2page() 1053 working_bytes = total_out - start_byte; btrfs_decompress_buf2page() 883 btrfs_compress_pages(int type, struct address_space *mapping, u64 start, unsigned long len, struct page **pages, unsigned long nr_dest_pages, unsigned long *out_pages, unsigned long *total_in, unsigned long *total_out, unsigned long max_out) btrfs_compress_pages() argument 977 btrfs_decompress_buf2page(char *buf, unsigned long buf_start, unsigned long total_out, u64 disk_start, struct bio_vec *bvec, int vcnt, unsigned long *pg_index, unsigned long *pg_offset) btrfs_decompress_buf2page() argument
|
H A D | lzo.c | 94 unsigned long *total_out, lzo_compress_pages() 116 *total_out = 0; lzo_compress_pages() 242 *total_out = tot_out; lzo_compress_pages() 87 lzo_compress_pages(struct list_head *ws, struct address_space *mapping, u64 start, unsigned long len, struct page **pages, unsigned long nr_dest_pages, unsigned long *out_pages, unsigned long *total_in, unsigned long *total_out, unsigned long max_out) lzo_compress_pages() argument
|
/linux-4.1.27/fs/logfs/ |
H A D | compr.c | 32 stream.total_out = 0; logfs_compress() 42 if (stream.total_out >= stream.total_in) logfs_compress() 45 ret = stream.total_out; logfs_compress() 66 stream.total_out = 0; logfs_uncompress()
|
/linux-4.1.27/fs/jffs2/ |
H A D | compr_zlib.c | 93 def_strm.total_out = 0; jffs2_zlib_compress() 95 while (def_strm.total_out < *dstlen - STREAM_END_SPACE && def_strm.total_in < *sourcelen) { jffs2_zlib_compress() 96 def_strm.avail_out = *dstlen - (def_strm.total_out + STREAM_END_SPACE); jffs2_zlib_compress() 102 jffs2_dbg(1, "deflate returned with avail_in %ld, avail_out %ld, total_in %ld, total_out %ld\n", jffs2_zlib_compress() 104 def_strm.total_in, def_strm.total_out); jffs2_zlib_compress() 123 if (def_strm.total_out >= def_strm.total_in) { jffs2_zlib_compress() 125 def_strm.total_in, def_strm.total_out); jffs2_zlib_compress() 131 def_strm.total_in, def_strm.total_out); jffs2_zlib_compress() 133 *dstlen = def_strm.total_out; jffs2_zlib_compress() 156 inf_strm.total_out = 0; jffs2_zlib_decompress()
|
/linux-4.1.27/fs/cramfs/ |
H A D | uncompress.c | 50 return stream.total_out; cramfs_uncompress_block()
|
/linux-4.1.27/crypto/ |
H A D | deflate.c | 151 *dlen = stream->total_out; deflate_compress() 192 *dlen = stream->total_out; deflate_decompress()
|
/linux-4.1.27/fs/pstore/ |
H A D | platform.c | 149 stream.total_out = 0; pstore_compress() 159 if (stream.total_out >= stream.total_in) pstore_compress() 162 ret = stream.total_out; pstore_compress() 182 stream.total_out = 0; pstore_decompress() 192 ret = stream.total_out; pstore_decompress()
|
/linux-4.1.27/fs/squashfs/ |
H A D | zlib_wrapper.c | 118 return stream->total_out; zlib_uncompress()
|
/linux-4.1.27/fs/isofs/ |
H A D | compress.c | 53 z_stream stream = { .total_out = 0, zisofs_uncompress_block() 192 return stream.total_out; zisofs_uncompress_block()
|
/linux-4.1.27/lib/zlib_inflate/ |
H A D | inflate.c | 29 strm->total_in = strm->total_out = state->total = 0; zlib_inflateReset() 682 strm->total_out += out; zlib_inflate() 723 strm->total_out += out; zlib_inflate() 779 z->total_out += z->avail_in; zlib_inflateIncomp()
|
/linux-4.1.27/arch/powerpc/kernel/ |
H A D | nvram_64.c | 348 stream.total_out = 0; nvram_compress() 358 if (stream.total_out >= stream.total_in) nvram_compress() 361 ret = stream.total_out; nvram_compress()
|
/linux-4.1.27/include/linux/ |
H A D | zlib.h | 91 uLong total_out; /* total nb of bytes output so far */ member in struct:z_stream_s 130 The fields total_in and total_out can be used for statistics or 408 total_out bytes) and returns Z_OK, Z_STREAM_END or an error code as described
|
/linux-4.1.27/lib/zlib_deflate/ |
H A D | deflate.c | 262 strm->total_in = strm->total_out = 0; zlib_deflateReset() 318 strm->total_out += len; flush_pending()
|
/linux-4.1.27/fs/ |
H A D | binfmt_flat.c | 273 strm.total_out = 0; decompress_exec()
|