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

/linux-master/fs/jffs2/
H A Dcompr_zlib.c90 def_strm.total_in = 0;
95 while (def_strm.total_out < *dstlen - STREAM_END_SPACE && def_strm.total_in < *sourcelen) {
98 (*sourcelen-def_strm.total_in), def_strm.avail_out);
102 jffs2_dbg(1, "deflate returned with avail_in %ld, avail_out %ld, total_in %ld, total_out %ld\n",
104 def_strm.total_in, def_strm.total_out);
123 if (def_strm.total_out >= def_strm.total_in) {
125 def_strm.total_in, def_strm.total_out);
131 def_strm.total_in, def_strm.total_out);
134 *sourcelen = def_strm.total_in;
152 inf_strm.total_in
[all...]
/linux-master/fs/btrfs/
H A Dzlib.c96 unsigned long *total_in, unsigned long *total_out)
113 *total_in = 0;
121 workspace->strm.total_in = 0;
138 while (workspace->strm.total_in < len) {
144 bytes_left = len - workspace->strm.total_in;
188 if (workspace->strm.total_in > 8192 &&
189 workspace->strm.total_in <
195 * before the total_in so we will pull in a new page for
215 if (workspace->strm.total_in >= len)
253 if (workspace->strm.total_out >= workspace->strm.total_in) {
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) argument
[all...]
H A Dcompression.h91 unsigned long *total_in,
154 unsigned long *total_in, unsigned long *total_out);
165 unsigned long *total_in, unsigned long *total_out);
175 unsigned long *total_in, unsigned long *total_out);
H A Dlzo.c214 unsigned long *total_in, unsigned long *total_out)
231 *total_in = 0;
297 *total_in = cur_in - start;
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) argument
H A Dzstd.c379 unsigned long *total_in, unsigned long *total_out)
397 *total_in = 0;
534 *total_in = tot_in;
377 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) argument
H A Dcompression.c94 unsigned long *out_pages, unsigned long *total_in,
100 out_pages, total_in, total_out);
103 out_pages, total_in, total_out);
106 out_pages, total_in, total_out);
989 * @total_in is used to return the number of bytes actually read. It
1000 unsigned long *total_in,
1011 out_pages, total_in, total_out);
92 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) argument
997 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) argument
H A Dinode.c854 unsigned long total_in = 0; local
922 total_in = 0;
949 mapping, start, pages, &nr_pages, &total_in,
972 if (total_in < actual_end) {
1021 total_in = round_up(total_in, fs_info->sectorsize);
1022 if (total_compressed + blocksize > total_in)
1029 ret = add_async_extent(async_chunk, start, total_in, total_compressed, pages,
1032 if (start + total_in < end) {
1033 start += total_in;
[all...]
/linux-master/lib/zlib_dfltcc/
H A Ddfltcc_deflate.c85 strm->total_in += (strm->avail_in - avail_in);
175 strm->total_in > dfltcc_state->block_threshold &&
191 strm->total_in + dfltcc_state->block_size;
244 if (strm->total_in == 0 && dfltcc_state->block_threshold > 0) {
289 strm->total_in + dfltcc_state->block_size;
/linux-master/drivers/crypto/starfive/
H A Djh7110-aes.c128 writel(upper_32_bits(cryp->total_in), cryp->base + STARFIVE_AES_MLEN0);
129 writel(lower_32_bits(cryp->total_in), cryp->base + STARFIVE_AES_MLEN1);
224 textlen = cryp->total_in;
378 cryp->total_in), 0);
379 cryp->total_in -= min_t(size_t, AES_BLOCK_SIZE, cryp->total_in);
472 cryp->total_in = req->cryptlen;
481 cryp->total_in = areq->cryptlen;
484 cryp->total_in = areq->cryptlen - cryp->authsize;
485 cryp->total_out = cryp->total_in;
[all...]
H A Djh7110-cryp.h194 size_t total_in; member in struct:starfive_cryp_dev
/linux-master/include/linux/
H A Dzlib.h87 uLong total_in; /* total nb of input bytes read so far */ member in struct:z_stream_s
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).
/linux-master/lib/zlib_inflate/
H A Dinflate.c39 strm->total_in = strm->total_out = state->total = 0;
750 strm->total_in += in;
808 z->total_in += z->avail_in;
/linux-master/fs/
H A Dbinfmt_flat.c205 strm.total_in = 0;
278 strm.total_in = 0;
/linux-master/arch/powerpc/kernel/
H A Dnvram_64.c331 stream.total_in = 0;
344 if (stream.total_out >= stream.total_in)
/linux-master/lib/zlib_deflate/
H A Ddeflate.c291 strm->total_in = strm->total_out = 0;
522 strm->total_in += len;
/linux-master/drivers/gpu/drm/i915/
H A Di915_gpu_error.c329 if (0 && zstream->total_out > zstream->total_in)

Completed in 258 milliseconds