Lines Matching refs:size
11 * The safety margin for ZSTD with a 128 KB block size is calculated below.
28 * ZSTD stores the data in blocks. Each block has a header whose size is
30 * The maximum uncompressed size of the payload is 128 KB. The minimum
31 * uncompressed size of the payload is never less than the payload size
34 * The assumption, that the uncompressed size of the payload is never
44 * - 3 bytes per every 128 KiB of uncompressed size (one block header per
46 * - 128 KiB (biggest possible zstd block size) to make sure that the
82 /* 128MB is the maximum window size supported by zstd. */
86 * Pick a larger size because it isn't used during kernel decompression,
88 * zstd's window anyway. The larger size speeds up initramfs decompression.
182 * ZSTD decompression code won't be happy if the buffer size is so big
183 * that its end address overflows. When the size is not provided, make
223 in.size = in_len;
238 out.size = out_len;
241 * We need to know the window size to allocate the ZSTD_DStream.
243 * window. The window size varies from 1 KB to ZSTD_WINDOWSIZE_MAX
247 ret = ZSTD_getFrameParams(¶ms, in.src, in.size);
257 error("ZSTD-compressed data has too large a window size");
288 if (in.pos == in.size) {
298 in.size = in_len;