Searched refs:total_in (Results 1 – 14 of 14) sorted by relevance
/linux-6.3-rc2/fs/jffs2/ |
A D | compr_zlib.c | 90 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-6.3-rc2/fs/btrfs/ |
A D | zlib.c | 113 *total_in = 0; in zlib_compress_pages() 121 workspace->strm.total_in = 0; in zlib_compress_pages() 138 while (workspace->strm.total_in < len) { in zlib_compress_pages() 188 if (workspace->strm.total_in > 8192 && in zlib_compress_pages() 189 workspace->strm.total_in < in zlib_compress_pages() 215 if (workspace->strm.total_in >= len) in zlib_compress_pages() 260 *total_in = workspace->strm.total_in; in zlib_compress_pages() 287 workspace->strm.total_in = 0; in zlib_decompress_bio() 309 while (workspace->strm.total_in < srclen) { in zlib_decompress_bio() 341 tmp = srclen - workspace->strm.total_in; in zlib_decompress_bio() [all …]
|
A D | compression.h | 84 unsigned long *total_in, 148 unsigned long *total_in, unsigned long *total_out); 159 unsigned long *total_in, unsigned long *total_out); 169 unsigned long *total_in, unsigned long *total_out);
|
A D | lzo.c | 213 unsigned long *total_in, unsigned long *total_out) in lzo_compress_pages() argument 230 *total_in = 0; in lzo_compress_pages() 296 *total_in = cur_in - start; in lzo_compress_pages()
|
A D | compression.c | 75 unsigned long *out_pages, unsigned long *total_in, in compression_compress_pages() argument 81 out_pages, total_in, total_out); in compression_compress_pages() 84 out_pages, total_in, total_out); in compression_compress_pages() 87 out_pages, total_in, total_out); in compression_compress_pages() 1015 unsigned long *total_in, in btrfs_compress_pages() argument 1026 out_pages, total_in, total_out); in btrfs_compress_pages()
|
A D | zstd.c | 375 unsigned long *total_in, unsigned long *total_out) in zstd_compress_pages() argument 393 *total_in = 0; in zstd_compress_pages() 531 *total_in = tot_in; in zstd_compress_pages()
|
A D | inode.c | 647 unsigned long total_in = 0; in compress_file_range() local 711 total_in = 0; in compress_file_range() 756 &total_in, in compress_file_range() 778 if (ret || total_in < actual_end) { in compress_file_range() 847 total_in = round_up(total_in, fs_info->sectorsize); in compress_file_range() 848 if (total_compressed + blocksize <= total_in) { in compress_file_range() 856 add_async_extent(async_chunk, start, total_in, in compress_file_range() 860 if (start + total_in < end) { in compress_file_range() 861 start += total_in; in compress_file_range()
|
/linux-6.3-rc2/lib/zlib_dfltcc/ |
A D | dfltcc_deflate.c | 85 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-6.3-rc2/include/linux/ |
A D | zlib.h | 87 uLong total_in; /* total nb of input bytes read so far */ member
|
/linux-6.3-rc2/lib/zlib_inflate/ |
A D | inflate.c | 39 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-6.3-rc2/fs/ |
A D | binfmt_flat.c | 205 strm.total_in = 0; in decompress_exec() 278 strm.total_in = 0; in decompress_exec()
|
/linux-6.3-rc2/arch/powerpc/kernel/ |
A D | nvram_64.c | 331 stream.total_in = 0; in nvram_compress() 344 if (stream.total_out >= stream.total_in) in nvram_compress()
|
/linux-6.3-rc2/lib/zlib_deflate/ |
A D | deflate.c | 291 strm->total_in = strm->total_out = 0; in zlib_deflateReset() 522 strm->total_in += len; in read_buf()
|
/linux-6.3-rc2/drivers/gpu/drm/i915/ |
A D | i915_gpu_error.c | 328 if (0 && zstream->total_out > zstream->total_in) in compress_page()
|
Completed in 45 milliseconds