Home
last modified time | relevance | path

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

/linux/fs/jffs2/
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/
A Dzlib.c117 *total_in = 0; in zlib_compress_folios()
130 workspace->strm.total_in = 0; in zlib_compress_folios()
147 while (workspace->strm.total_in < len) { in zlib_compress_folios()
217 if (workspace->strm.total_in > 8192 && in zlib_compress_folios()
218 workspace->strm.total_in < in zlib_compress_folios()
244 if (workspace->strm.total_in >= len) in zlib_compress_folios()
289 *total_in = workspace->strm.total_in; in zlib_compress_folios()
316 workspace->strm.total_in = 0; in zlib_decompress_bio()
343 while (workspace->strm.total_in < srclen) { in zlib_decompress_bio()
375 tmp = srclen - workspace->strm.total_in; in zlib_decompress_bio()
[all …]
A Dcompression.h98 unsigned long *total_in, unsigned long *total_out);
162 unsigned long *total_in, unsigned long *total_out);
173 unsigned long *total_in, unsigned long *total_out);
183 unsigned long *total_in, unsigned long *total_out);
A Dlzo.c214 unsigned long *total_in, unsigned long *total_out) in lzo_compress_folios() argument
231 *total_in = 0; in lzo_compress_folios()
298 *total_in = cur_in - start; in lzo_compress_folios()
A Dcompression.c95 unsigned long *total_in, unsigned long *total_out) in compression_compress_pages() argument
100 out_folios, total_in, total_out); in compression_compress_pages()
103 out_folios, total_in, total_out); in compression_compress_pages()
106 out_folios, total_in, total_out); in compression_compress_pages()
1029 unsigned long *total_in, unsigned long *total_out) in btrfs_compress_folios() argument
1039 out_folios, total_in, total_out); in btrfs_compress_folios()
A Dzstd.c380 unsigned long *total_in, unsigned long *total_out) in zstd_compress_folios() argument
401 *total_in = 0; in zstd_compress_folios()
562 *total_in = tot_in; in zstd_compress_folios()
A Dinode.c940 unsigned long total_in = 0; in compress_file_range() local
1017 total_in = 0; in compress_file_range()
1044 mapping, start, folios, &nr_folios, &total_in, in compress_file_range()
1066 if (total_in < actual_end) in compress_file_range()
1089 total_in = round_up(total_in, fs_info->sectorsize); in compress_file_range()
1090 if (total_compressed + blocksize > total_in) in compress_file_range()
1097 ret = add_async_extent(async_chunk, start, total_in, total_compressed, folios, in compress_file_range()
1100 if (start + total_in < end) { in compress_file_range()
1101 start += total_in; in compress_file_range()
/linux/lib/zlib_dfltcc/
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/drivers/crypto/starfive/
A Djh7110-aes.c214 textlen = cryp->total_in; in starfive_aes_ccm_init()
314 cryp->total_in, cryp->authsize, 1); in starfive_aes_read_authtag()
505 unsigned int remain = cryp->total_in; in starfive_aes_map_sg()
579 cryp->total_in = req->cryptlen; in starfive_aes_do_one_req()
593 if (!cryp->total_in) in starfive_aes_do_one_req()
659 cryp->total_in = req->cryptlen; in starfive_aes_aead_do_one_req()
663 cryp->total_out = cryp->total_in; in starfive_aes_aead_do_one_req()
665 cryp->total_in + cryp->assoclen, in starfive_aes_aead_do_one_req()
680 if (cryp->total_in) in starfive_aes_aead_do_one_req()
683 cryp->total_in); in starfive_aes_aead_do_one_req()
[all …]
A Djh7110-cryp.h194 size_t total_in; member
/linux/include/linux/
A Dzlib.h87 uLong total_in; /* total nb of input bytes read so far */ member
/linux/lib/zlib_inflate/
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/arch/powerpc/kernel/
A Dnvram_64.c331 stream.total_in = 0; in nvram_compress()
344 if (stream.total_out >= stream.total_in) in nvram_compress()
/linux/fs/
A Dbinfmt_flat.c207 strm.total_in = 0; in decompress_exec()
280 strm.total_in = 0; in decompress_exec()
/linux/lib/zlib_deflate/
A Ddeflate.c291 strm->total_in = strm->total_out = 0; in zlib_deflateReset()
522 strm->total_in += len; in read_buf()
/linux/drivers/gpu/drm/
A Ddrm_panic.c726 stream.total_in = 0; in drm_panic_get_qr_code_url()
/linux/drivers/gpu/drm/i915/
A Di915_gpu_error.c330 if (0 && zstream->total_out > zstream->total_in) in compress_page()

Completed in 60 milliseconds