| /OK3568_Linux_fs/kernel/fs/jffs2/ |
| H 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()
|
| /OK3568_Linux_fs/kernel/fs/btrfs/ |
| H A D | zlib.c | 96 unsigned long *total_in, unsigned long *total_out) in zlib_compress_pages() argument 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() 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() 264 *total_in = workspace->strm.total_in; in zlib_compress_pages() [all …]
|
| H A D | compression.h | 85 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 D | lzo.c | 116 unsigned long *total_in, unsigned long *total_out) in lzo_compress_pages() argument 140 *total_in = 0; in lzo_compress_pages() 268 *total_in = tot_in; in lzo_compress_pages()
|
| H A D | compression.c | 67 unsigned long *out_pages, unsigned long *total_in, in compression_compress_pages() argument 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() 1152 unsigned long *total_in, in btrfs_compress_pages() argument 1163 out_pages, total_in, total_out); in btrfs_compress_pages()
|
| H A D | zstd.c | 371 unsigned long *total_in, unsigned long *total_out) in zstd_compress_pages() argument 389 *total_in = 0; in zstd_compress_pages() 532 *total_in = tot_in; in zstd_compress_pages()
|
| H A D | inode.c | 487 unsigned long total_in = 0; in compress_file_range() local 542 total_in = 0; in compress_file_range() 587 &total_in, in compress_file_range() 610 if (ret || total_in < actual_end) { in compress_file_range() 679 total_in = ALIGN(total_in, PAGE_SIZE); in compress_file_range() 680 if (total_compressed + blocksize <= total_in) { in compress_file_range() 688 add_async_extent(async_chunk, start, total_in, in compress_file_range() 692 if (start + total_in < end) { in compress_file_range() 693 start += total_in; in compress_file_range()
|
| /OK3568_Linux_fs/kernel/lib/zlib_dfltcc/ |
| H A D | dfltcc_deflate.c | 66 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()
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | zlib.h | 87 uLong total_in; /* total nb of input bytes read so far */ member
|
| /OK3568_Linux_fs/u-boot/lib/zlib/ |
| H A D | deflate.c | 363 strm->total_in = strm->total_out = 0; 435 strm->total_in != 0) { 873 put_byte(s, (Byte)(strm->total_in & 0xff)); 874 put_byte(s, (Byte)((strm->total_in >> 8) & 0xff)); 875 put_byte(s, (Byte)((strm->total_in >> 16) & 0xff)); 876 put_byte(s, (Byte)((strm->total_in >> 24) & 0xff)); 1012 strm->total_in += len;
|
| H A D | inflate.c | 14 strm->total_in = strm->total_out = state->total = 0; in inflateReset() 916 strm->total_in += in; in inflate()
|
| /OK3568_Linux_fs/kernel/lib/zlib_inflate/ |
| H 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()
|
| /OK3568_Linux_fs/kernel/arch/powerpc/kernel/ |
| H A D | nvram_64.c | 331 stream.total_in = 0; in nvram_compress() 344 if (stream.total_out >= stream.total_in) in nvram_compress()
|
| /OK3568_Linux_fs/kernel/fs/ |
| H A D | binfmt_flat.c | 222 strm.total_in = 0; in decompress_exec() 295 strm.total_in = 0; in decompress_exec()
|
| /OK3568_Linux_fs/u-boot/include/u-boot/ |
| H A D | zlib.h | 423 uLong total_in; /* total nb of input bytes read so far */ member
|
| /OK3568_Linux_fs/kernel/lib/zlib_deflate/ |
| H A D | deflate.c | 291 strm->total_in = strm->total_out = 0; in zlib_deflateReset() 515 strm->total_in += len; in read_buf()
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/host_include/ |
| H A D | zlib.h | 88 uLong total_in; /* total number of input bytes read so far */ member
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/ |
| H A D | zlib.h | 88 uLong total_in; /* total number of input bytes read so far */ member
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/ |
| H A D | zlib.h | 88 uLong total_in; /* total number of input bytes read so far */ member
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/host_include/ |
| H A D | zlib.h | 88 uLong total_in; /* total number of input bytes read so far */ member
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/ |
| H A D | i915_gpu_error.c | 319 if (0 && zstream->total_out > zstream->total_in) in compress_page()
|