Searched refs:total_in (Results 1 – 14 of 14) sorted by relevance
/Linux-v5.4/fs/jffs2/ |
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-v5.4/fs/btrfs/ |
D | zlib.c | 96 unsigned long *total_in, in zlib_compress_pages() argument 113 *total_in = 0; in zlib_compress_pages() 121 workspace->strm.total_in = 0; in zlib_compress_pages() 141 while (workspace->strm.total_in < len) { in zlib_compress_pages() 152 if (workspace->strm.total_in > 8192 && in zlib_compress_pages() 153 workspace->strm.total_in < in zlib_compress_pages() 181 if (workspace->strm.total_in >= len) in zlib_compress_pages() 189 bytes_left = len - workspace->strm.total_in; in zlib_compress_pages() 211 if (workspace->strm.total_out >= workspace->strm.total_in) { in zlib_compress_pages() 218 *total_in = workspace->strm.total_in; in zlib_compress_pages() [all …]
|
D | compression.h | 83 unsigned long *total_in, 147 unsigned long *total_in,
|
D | lzo.c | 139 unsigned long *total_in, in lzo_compress_pages() argument 164 *total_in = 0; in lzo_compress_pages() 292 *total_in = tot_in; in lzo_compress_pages()
|
D | zstd.c | 375 unsigned long *total_in, in zstd_compress_pages() argument 394 *total_in = 0; in zstd_compress_pages() 537 *total_in = tot_in; in zstd_compress_pages()
|
D | compression.c | 1035 unsigned long *total_in, in btrfs_compress_pages() argument 1048 total_in, total_out); in btrfs_compress_pages()
|
D | inode.c | 482 unsigned long total_in = 0; in compress_file_range() local 537 total_in = 0; in compress_file_range() 582 &total_in, in compress_file_range() 605 if (ret || total_in < actual_end) { in compress_file_range() 666 total_in = ALIGN(total_in, PAGE_SIZE); in compress_file_range() 667 if (total_compressed + blocksize <= total_in) { in compress_file_range() 675 add_async_extent(async_chunk, start, total_in, in compress_file_range() 679 if (start + total_in < end) { in compress_file_range() 680 start += total_in; in compress_file_range()
|
/Linux-v5.4/drivers/crypto/stm32/ |
D | stm32-cryp.c | 146 size_t total_in; member 317 ret = stm32_cryp_check_aligned(cryp->in_sg, cryp->total_in, in stm32_cryp_check_io_aligned() 345 int pages, total_in, total_out; in stm32_cryp_copy_sgs() local 352 total_in = ALIGN(cryp->total_in, cryp->hw_blocksize); in stm32_cryp_copy_sgs() 353 pages = total_in ? get_order(total_in) : 1; in stm32_cryp_copy_sgs() 366 sg_copy_buf(buf_in, cryp->in_sg, 0, cryp->total_in, 0); in stm32_cryp_copy_sgs() 368 sg_init_one(&cryp->in_sgl, buf_in, total_in); in stm32_cryp_copy_sgs() 942 cryp->total_in = req->nbytes; in stm32_cryp_prepare_req() 943 cryp->total_out = cryp->total_in; in stm32_cryp_prepare_req() 969 cryp->total_in = areq->assoclen + areq->cryptlen; in stm32_cryp_prepare_req() [all …]
|
/Linux-v5.4/include/linux/ |
D | zlib.h | 87 uLong total_in; /* total nb of input bytes read so far */ member
|
/Linux-v5.4/lib/zlib_inflate/ |
D | inflate.c | 29 strm->total_in = strm->total_out = state->total = 0; in zlib_inflateReset() 734 strm->total_in += in; in zlib_inflate() 792 z->total_in += z->avail_in; in zlib_inflateIncomp()
|
/Linux-v5.4/arch/powerpc/kernel/ |
D | nvram_64.c | 331 stream.total_in = 0; in nvram_compress() 344 if (stream.total_out >= stream.total_in) in nvram_compress()
|
/Linux-v5.4/fs/ |
D | binfmt_flat.c | 217 strm.total_in = 0; in decompress_exec() 290 strm.total_in = 0; in decompress_exec()
|
/Linux-v5.4/lib/zlib_deflate/ |
D | deflate.c | 262 strm->total_in = strm->total_out = 0; in zlib_deflateReset() 511 strm->total_in += len; in read_buf()
|
/Linux-v5.4/drivers/gpu/drm/i915/ |
D | i915_gpu_error.c | 313 if (0 && zstream->total_out > zstream->total_in) in compress_page()
|