Home
last modified time | relevance | path

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

/linux-6.6.21/lib/zstd/decompress/ !
Dzstd_decompress.c525 return ZSTD_CONTENTSIZE_ERROR; in ZSTD_getFrameContentSize()
596 return ZSTD_CONTENTSIZE_ERROR; in ZSTD_findDecompressedSize()
606 if (ret >= ZSTD_CONTENTSIZE_ERROR) return ret; in ZSTD_findDecompressedSize()
609 if (totalDstSize + ret < totalDstSize) return ZSTD_CONTENTSIZE_ERROR; in ZSTD_findDecompressedSize()
614 return ZSTD_CONTENTSIZE_ERROR; in ZSTD_findDecompressedSize()
622 if (srcSize) return ZSTD_CONTENTSIZE_ERROR; in ZSTD_findDecompressedSize()
638 ZSTD_STATIC_ASSERT(ZSTD_CONTENTSIZE_ERROR < ZSTD_CONTENTSIZE_UNKNOWN); in ZSTD_getDecompressedSize()
639 return (ret >= ZSTD_CONTENTSIZE_ERROR) ? 0 : ret; in ZSTD_getDecompressedSize()
675 frameSizeInfo.decompressedBound = ZSTD_CONTENTSIZE_ERROR; in ZSTD_errorFrameSizeInfo()
766 if (ZSTD_isError(compressedSize) || decompressedBound == ZSTD_CONTENTSIZE_ERROR) in ZSTD_decompressBound()
[all …]
/linux-6.6.21/include/linux/ !
Dzstd_lib.h150 #define ZSTD_CONTENTSIZE_ERROR (0ULL - 2) macro