Searched refs:compressedSize (Results 1 - 5 of 5) sorted by relevance

/linux-master/include/linux/
H A Dlz4.h278 * @compressedSize: is the precise full size of the compressed block
292 int LZ4_decompress_safe(const char *source, char *dest, int compressedSize,
296 * LZ4_decompress_safe_partial() - Decompress a block of size 'compressedSize'
301 * @compressedSize: is the precise full size of the compressed block.
306 * This function decompresses a compressed block of size 'compressedSize'
321 int compressedSize, int targetOutputSize, int maxDecompressedSize);
530 * @compressedSize: is the precise full size of the compressed block
561 const char *source, char *dest, int compressedSize,
608 * @compressedSize: is the precise full size of the compressed block
623 int compressedSize, in
[all...]
H A Dzstd_lib.h118 * `compressedSize` : must be the _exact_ size of some number of compressed and/or skippable frames.
124 const void* src, size_t compressedSize);
/linux-master/lib/lz4/
H A Dlz4_decompress.c461 int compressedSize, int maxDecompressedSize)
464 compressedSize, maxDecompressedSize,
470 int compressedSize, int targetOutputSize, int dstCapacity)
473 return LZ4_decompress_generic(src, dst, compressedSize, dstCapacity,
489 int compressedSize, int maxOutputSize)
492 compressedSize, maxOutputSize,
499 int compressedSize,
504 compressedSize, maxOutputSize,
511 int compressedSize, int maxOutputSize,
515 compressedSize, maxOutputSiz
460 LZ4_decompress_safe(const char *source, char *dest, int compressedSize, int maxDecompressedSize) argument
469 LZ4_decompress_safe_partial(const char *src, char *dst, int compressedSize, int targetOutputSize, int dstCapacity) argument
488 LZ4_decompress_safe_withPrefix64k(const char *source, char *dest, int compressedSize, int maxOutputSize) argument
498 LZ4_decompress_safe_withSmallPrefix(const char *source, char *dest, int compressedSize, int maxOutputSize, size_t prefixSize) argument
510 LZ4_decompress_safe_forceExtDict(const char *source, char *dest, int compressedSize, int maxOutputSize, const void *dictStart, size_t dictSize) argument
538 LZ4_decompress_safe_doubleDict(const char *source, char *dest, int compressedSize, int maxOutputSize, size_t prefixSize, const void *dictStart, size_t dictSize) argument
587 LZ4_decompress_safe_continue(LZ4_streamDecode_t *LZ4_streamDecode, const char *source, char *dest, int compressedSize, int maxOutputSize) argument
679 LZ4_decompress_safe_usingDict(const char *source, char *dest, int compressedSize, int maxOutputSize, const char *dictStart, int dictSize) argument
[all...]
/linux-master/lib/zstd/decompress/
H A Dzstd_decompress.c674 frameSizeInfo.compressedSize = ret;
687 frameSizeInfo.compressedSize = readSkippableFrameSize(src, srcSize);
688 assert(ZSTD_isError(frameSizeInfo.compressedSize) ||
689 frameSizeInfo.compressedSize <= srcSize);
733 frameSizeInfo.compressedSize = (size_t)(ip - ipstart);
749 return frameSizeInfo.compressedSize;
764 size_t const compressedSize = frameSizeInfo.compressedSize; local
766 if (ZSTD_isError(compressedSize) || decompressedBound == ZSTD_CONTENTSIZE_ERROR)
768 assert(srcSize >= compressedSize);
818 ZSTD_DCtx_trace_end(ZSTD_DCtx const* dctx, U64 uncompressedSize, U64 compressedSize, unsigned streaming) argument
[all...]
/linux-master/lib/zstd/common/
H A Dzstd_internal.h335 * Note: before using `compressedSize`, check for errors using ZSTD_isError().
340 size_t compressedSize; member in struct:__anon163

Completed in 150 milliseconds