Home
last modified time | relevance | path

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

/linux/fs/jffs2/
H A Dcompr_zlib.c90 def_strm.total_in = 0; in jffs2_zlib_compress()
95 while (def_strm.total_out < *dstlen - STREAM_END_SPACE && def_strm.total_in < *sourcelen) { in jffs2_zlib_compress()
98 (*sourcelen-def_strm.total_in), def_strm.avail_out); in jffs2_zlib_compress()
104 def_strm.total_in, def_strm.total_out); in jffs2_zlib_compress()
123 if (def_strm.total_out >= def_strm.total_in) { in jffs2_zlib_compress()
125 def_strm.total_in, def_strm.total_out); in jffs2_zlib_compress()
131 def_strm.total_in, def_strm.total_out); in jffs2_zlib_compress()
134 *sourcelen = def_strm.total_in; in jffs2_zlib_compress()
152 inf_strm.total_in = 0; in jffs2_zlib_decompress()
/linux/fs/btrfs/
H A Dzlib.c175 workspace->strm.total_in = 0; in zlib_compress_bio()
190 while (workspace->strm.total_in < len) { in zlib_compress_bio()
196 unsigned long bytes_left = len - workspace->strm.total_in; in zlib_compress_bio()
245 if (workspace->strm.total_in > blocksize * 2 && in zlib_compress_bio()
246 workspace->strm.total_in < workspace->strm.total_out) { in zlib_compress_bio()
271 if (workspace->strm.total_in >= len) in zlib_compress_bio()
325 if (workspace->strm.total_out >= workspace->strm.total_in) { in zlib_compress_bio()
365 workspace->strm.total_in = 0; in zlib_decompress_bio()
392 while (workspace->strm.total_in < srclen) { in zlib_decompress_bio()
425 tmp = srclen - workspace->strm.total_in; in zlib_decompress_bio()
[all …]
H A Dinode.c949 unsigned long total_in = 0; in compress_file_range() local
989 total_in = 0; in compress_file_range()
1031 total_in = cur_len; in compress_file_range()
1050 if (total_in < actual_end) in compress_file_range()
1076 total_in = round_up(total_in, fs_info->sectorsize); in compress_file_range()
1077 if (total_compressed + blocksize > total_in) in compress_file_range()
1085 ret = add_async_extent(async_chunk, start, total_in, cb); in compress_file_range()
1087 if (start + total_in < end) { in compress_file_range()
1088 start += total_in; in compress_file_range()
/linux/lib/zlib_dfltcc/
H A Ddfltcc_deflate.c85 strm->total_in += (strm->avail_in - avail_in); in dfltcc_cmpr()
175 strm->total_in > dfltcc_state->block_threshold && in dfltcc_deflate()
191 strm->total_in + dfltcc_state->block_size; in dfltcc_deflate()
244 if (strm->total_in == 0 && dfltcc_state->block_threshold > 0) { in dfltcc_deflate()
289 strm->total_in + dfltcc_state->block_size; in dfltcc_deflate()
/linux/include/linux/
H A Dzlib.h87 uLong total_in; /* total nb of input bytes read so far */ member
/linux/lib/zlib_inflate/
H A Dinflate.c39 strm->total_in = strm->total_out = state->total = 0; in zlib_inflateReset()
750 strm->total_in += in; in zlib_inflate()
808 z->total_in += z->avail_in; in zlib_inflateIncomp()
/linux/fs/
H A Dbinfmt_flat.c207 strm.total_in = 0; in decompress_exec()
280 strm.total_in = 0; in decompress_exec()
/linux/arch/powerpc/kernel/
H A Dnvram_64.c331 stream.total_in = 0; in nvram_compress()
344 if (stream.total_out >= stream.total_in) in nvram_compress()
/linux/drivers/gpu/drm/i915/
H A Di915_gpu_error.c329 if (0 && zstream->total_out > zstream->total_in) in compress_page()