Home
last modified time | relevance | path

Searched refs:ZSTD_CONTENTSIZE_ERROR (Results 1 – 2 of 2) sorted by relevance

/linux/lib/zstd/decompress/
H A Dzstd_decompress.c557 return ZSTD_CONTENTSIZE_ERROR; in ZSTD_getFrameContentSize()
630 if (ZSTD_isError(skippableSize)) return ZSTD_CONTENTSIZE_ERROR; in ZSTD_findDecompressedSize()
639 if (fcs >= ZSTD_CONTENTSIZE_ERROR) return fcs; in ZSTD_findDecompressedSize()
642 return ZSTD_CONTENTSIZE_ERROR; /* check for overflow */ in ZSTD_findDecompressedSize()
647 if (ZSTD_isError(frameSrcSize)) return ZSTD_CONTENTSIZE_ERROR; in ZSTD_findDecompressedSize()
655 if (srcSize) return ZSTD_CONTENTSIZE_ERROR; in ZSTD_findDecompressedSize()
671 ZSTD_STATIC_ASSERT(ZSTD_CONTENTSIZE_ERROR < ZSTD_CONTENTSIZE_UNKNOWN); in ZSTD_getDecompressedSize()
672 return (ret >= ZSTD_CONTENTSIZE_ERROR) ? 0 : ret; in ZSTD_getDecompressedSize()
708 frameSizeInfo.decompressedBound = ZSTD_CONTENTSIZE_ERROR; in ZSTD_errorFrameSizeInfo()
802 if (ZSTD_isError(compressedSize) || decompressedBound == ZSTD_CONTENTSIZE_ERROR) in ZSTD_decompressBound()
[all …]
/linux/include/linux/
H A Dzstd_lib.h183 #define ZSTD_CONTENTSIZE_ERROR (0ULL - 2) macro