Home
last modified time | relevance | path

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

/Linux-v6.1/lib/zstd/decompress/
Dzstd_decompress.c510 return ZSTD_CONTENTSIZE_ERROR; in ZSTD_getFrameContentSize()
550 return ZSTD_CONTENTSIZE_ERROR; in ZSTD_findDecompressedSize()
560 if (ret >= ZSTD_CONTENTSIZE_ERROR) return ret; in ZSTD_findDecompressedSize()
563 if (totalDstSize + ret < totalDstSize) return ZSTD_CONTENTSIZE_ERROR; in ZSTD_findDecompressedSize()
568 return ZSTD_CONTENTSIZE_ERROR; in ZSTD_findDecompressedSize()
576 if (srcSize) return ZSTD_CONTENTSIZE_ERROR; in ZSTD_findDecompressedSize()
592 ZSTD_STATIC_ASSERT(ZSTD_CONTENTSIZE_ERROR < ZSTD_CONTENTSIZE_UNKNOWN); in ZSTD_getDecompressedSize()
593 return (ret >= ZSTD_CONTENTSIZE_ERROR) ? 0 : ret; in ZSTD_getDecompressedSize()
629 frameSizeInfo.decompressedBound = ZSTD_CONTENTSIZE_ERROR; in ZSTD_errorFrameSizeInfo()
720 if (ZSTD_isError(compressedSize) || decompressedBound == ZSTD_CONTENTSIZE_ERROR) in ZSTD_decompressBound()
[all …]
/Linux-v6.1/include/linux/
Dzstd_lib.h143 #define ZSTD_CONTENTSIZE_ERROR (0ULL - 2) macro