Home
last modified time | relevance | path

Searched refs:total_in (Results 1 - 25 of 30) sorted by relevance

12

/kernel/linux/linux-5.10/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()
102 jffs2_dbg(1, "deflate returned with avail_in %ld, avail_out %ld, total_in %ld, total_out %ld\n", 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 in jffs2_zlib_decompress()
[all...]
/kernel/linux/linux-6.6/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()
102 jffs2_dbg(1, "deflate returned with avail_in %ld, avail_out %ld, total_in %ld, total_out %ld\n", 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 in jffs2_zlib_decompress()
[all...]
/kernel/linux/linux-5.10/fs/btrfs/
H A Dzlib.c96 unsigned long *total_in, unsigned long *total_out) in zlib_compress_pages()
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()
144 bytes_left = len - workspace->strm.total_in; in zlib_compress_pages()
188 if (workspace->strm.total_in > 8192 && in zlib_compress_pages()
189 workspace->strm.total_in < in zlib_compress_pages()
195 * before the total_in so we will pull in a new page for in zlib_compress_pages()
217 if (workspace->strm.total_in >= len) in zlib_compress_pages()
257 if (workspace->strm.total_out >= workspace->strm.total_in) { in zlib_compress_pages()
94 zlib_compress_pages(struct list_head *ws, struct address_space *mapping, u64 start, struct page **pages, unsigned long *out_pages, unsigned long *total_in, unsigned long *total_out) zlib_compress_pages() argument
[all...]
H A Dcompression.h85 unsigned long *total_in,
149 unsigned long *total_in, unsigned long *total_out);
160 unsigned long *total_in, unsigned long *total_out);
170 unsigned long *total_in, unsigned long *total_out);
H A Dlzo.c116 unsigned long *total_in, unsigned long *total_out) in lzo_compress_pages()
140 *total_in = 0; in lzo_compress_pages()
268 *total_in = tot_in; in lzo_compress_pages()
114 lzo_compress_pages(struct list_head *ws, struct address_space *mapping, u64 start, struct page **pages, unsigned long *out_pages, unsigned long *total_in, unsigned long *total_out) lzo_compress_pages() argument
H A Dcompression.c67 unsigned long *out_pages, unsigned long *total_in, in compression_compress_pages()
73 out_pages, total_in, total_out); in compression_compress_pages()
76 out_pages, total_in, total_out); in compression_compress_pages()
79 out_pages, total_in, total_out); in compression_compress_pages()
1138 * @total_in is used to return the number of bytes actually read. It
1152 unsigned long *total_in, in btrfs_compress_pages()
1163 out_pages, total_in, total_out); in btrfs_compress_pages()
65 compression_compress_pages(int type, struct list_head *ws, struct address_space *mapping, u64 start, struct page **pages, unsigned long *out_pages, unsigned long *total_in, unsigned long *total_out) compression_compress_pages() argument
1149 btrfs_compress_pages(unsigned int type_level, struct address_space *mapping, u64 start, struct page **pages, unsigned long *out_pages, unsigned long *total_in, unsigned long *total_out) btrfs_compress_pages() argument
H A Dzstd.c371 unsigned long *total_in, unsigned long *total_out) in zstd_compress_pages()
389 *total_in = 0; in zstd_compress_pages()
532 *total_in = tot_in; in zstd_compress_pages()
369 zstd_compress_pages(struct list_head *ws, struct address_space *mapping, u64 start, struct page **pages, unsigned long *out_pages, unsigned long *total_in, unsigned long *total_out) zstd_compress_pages() argument
/kernel/linux/linux-6.6/fs/btrfs/
H A Dzlib.c96 unsigned long *total_in, unsigned long *total_out) in zlib_compress_pages()
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()
144 bytes_left = len - workspace->strm.total_in; in zlib_compress_pages()
188 if (workspace->strm.total_in > 8192 && in zlib_compress_pages()
189 workspace->strm.total_in < in zlib_compress_pages()
195 * before the total_in so we will pull in a new page for in zlib_compress_pages()
215 if (workspace->strm.total_in >= len) in zlib_compress_pages()
253 if (workspace->strm.total_out >= workspace->strm.total_in) { in zlib_compress_pages()
94 zlib_compress_pages(struct list_head *ws, struct address_space *mapping, u64 start, struct page **pages, unsigned long *out_pages, unsigned long *total_in, unsigned long *total_out) zlib_compress_pages() argument
[all...]
H A Dcompression.h83 unsigned long *total_in,
143 unsigned long *total_in, unsigned long *total_out);
154 unsigned long *total_in, unsigned long *total_out);
164 unsigned long *total_in, unsigned long *total_out);
H A Dlzo.c214 unsigned long *total_in, unsigned long *total_out) in lzo_compress_pages()
231 *total_in = 0; in lzo_compress_pages()
297 *total_in = cur_in - start; in lzo_compress_pages()
212 lzo_compress_pages(struct list_head *ws, struct address_space *mapping, u64 start, struct page **pages, unsigned long *out_pages, unsigned long *total_in, unsigned long *total_out) lzo_compress_pages() argument
H A Dcompression.c96 unsigned long *out_pages, unsigned long *total_in, in compression_compress_pages()
102 out_pages, total_in, total_out); in compression_compress_pages()
105 out_pages, total_in, total_out); in compression_compress_pages()
108 out_pages, total_in, total_out); in compression_compress_pages()
896 * @total_in is used to return the number of bytes actually read. It
907 unsigned long *total_in, in btrfs_compress_pages()
918 out_pages, total_in, total_out); in btrfs_compress_pages()
94 compression_compress_pages(int type, struct list_head *ws, struct address_space *mapping, u64 start, struct page **pages, unsigned long *out_pages, unsigned long *total_in, unsigned long *total_out) compression_compress_pages() argument
904 btrfs_compress_pages(unsigned int type_level, struct address_space *mapping, u64 start, struct page **pages, unsigned long *out_pages, unsigned long *total_in, unsigned long *total_out) btrfs_compress_pages() argument
H A Dzstd.c375 unsigned long *total_in, unsigned long *total_out) in zstd_compress_pages()
393 *total_in = 0; in zstd_compress_pages()
531 *total_in = tot_in; in zstd_compress_pages()
373 zstd_compress_pages(struct list_head *ws, struct address_space *mapping, u64 start, struct page **pages, unsigned long *out_pages, unsigned long *total_in, unsigned long *total_out) zstd_compress_pages() argument
/kernel/linux/linux-5.10/lib/zlib_dfltcc/
H A Ddfltcc_deflate.c66 strm->total_in += (strm->avail_in - avail_in); in dfltcc_cmpr()
149 strm->total_in > dfltcc_state->block_threshold && in dfltcc_deflate()
165 strm->total_in + dfltcc_state->block_size; in dfltcc_deflate()
213 if (strm->total_in == 0 && dfltcc_state->block_threshold > 0) { in dfltcc_deflate()
258 strm->total_in + dfltcc_state->block_size; in dfltcc_deflate()
/kernel/linux/linux-6.6/drivers/crypto/starfive/
H A Djh7110-aes.c128 writel(upper_32_bits(cryp->total_in), cryp->base + STARFIVE_AES_MLEN0); in starfive_aes_set_mlen()
129 writel(lower_32_bits(cryp->total_in), cryp->base + STARFIVE_AES_MLEN1); in starfive_aes_set_mlen()
224 textlen = cryp->total_in; in starfive_aes_ccm_init()
385 cryp->total_in), 0); in starfive_aes_done_task()
386 cryp->total_in -= min_t(size_t, AES_BLOCK_SIZE, cryp->total_in); in starfive_aes_done_task()
479 cryp->total_in = req->cryptlen; in starfive_aes_prepare_req()
488 cryp->total_in = areq->cryptlen; in starfive_aes_prepare_req()
491 cryp->total_in = areq->cryptlen - cryp->authsize; in starfive_aes_prepare_req()
492 cryp->total_out = cryp->total_in; in starfive_aes_prepare_req()
[all...]
H A Djh7110-cryp.h188 size_t total_in; member
/kernel/linux/linux-6.6/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()
/kernel/linux/linux-5.10/include/linux/
H A Dzlib.h87 uLong total_in; /* total nb of input bytes read so far */ member
130 The fields total_in and total_out can be used for statistics or
131 progress reports. After compression, total_in holds the total size of
285 so far (that is, total_in bytes).
/kernel/linux/linux-6.6/include/linux/
H A Dzlib.h87 uLong total_in; /* total nb of input bytes read so far */ member
130 The fields total_in and total_out can be used for statistics or
131 progress reports. After compression, total_in holds the total size of
285 so far (that is, total_in bytes).
/kernel/linux/linux-5.10/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()
/kernel/linux/linux-6.6/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()
/kernel/linux/linux-5.10/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()
/kernel/linux/linux-6.6/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()
/kernel/linux/linux-5.10/fs/
H A Dbinfmt_flat.c222 strm.total_in = 0; in decompress_exec()
295 strm.total_in = 0; in decompress_exec()
/kernel/linux/linux-5.10/lib/zlib_deflate/
H A Ddeflate.c291 strm->total_in = strm->total_out = 0; in zlib_deflateReset()
515 strm->total_in += len; in read_buf()
/kernel/linux/linux-6.6/fs/
H A Dbinfmt_flat.c205 strm.total_in = 0; in decompress_exec()
278 strm.total_in = 0; in decompress_exec()

Completed in 23 milliseconds

12