Home
last modified time | relevance | path

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

/freebsd-13-stable/sys/contrib/zstd/examples/
HDsimple_decompression.c27 CHECK(rSize != ZSTD_CONTENTSIZE_ERROR, "%s: not compressed by zstd!", fname); in decompress()
HDdictionary_decompression.c41 CHECK(rSize != ZSTD_CONTENTSIZE_ERROR, "%s: not compressed by zstd!", fname); in decompress()
/freebsd-13-stable/sys/contrib/zstd/lib/decompress/
HDzstd_decompress.c355 return ZSTD_CONTENTSIZE_ERROR; in ZSTD_getFrameContentSize()
395 return ZSTD_CONTENTSIZE_ERROR; in ZSTD_findDecompressedSize()
405 if (ret >= ZSTD_CONTENTSIZE_ERROR) return ret; in ZSTD_findDecompressedSize()
408 if (totalDstSize + ret < totalDstSize) return ZSTD_CONTENTSIZE_ERROR; in ZSTD_findDecompressedSize()
413 return ZSTD_CONTENTSIZE_ERROR; in ZSTD_findDecompressedSize()
421 if (srcSize) return ZSTD_CONTENTSIZE_ERROR; in ZSTD_findDecompressedSize()
437 ZSTD_STATIC_ASSERT(ZSTD_CONTENTSIZE_ERROR < ZSTD_CONTENTSIZE_UNKNOWN); in ZSTD_getDecompressedSize()
438 return (ret >= ZSTD_CONTENTSIZE_ERROR) ? 0 : ret; in ZSTD_getDecompressedSize()
466 frameSizeInfo.decompressedBound = ZSTD_CONTENTSIZE_ERROR; in ZSTD_errorFrameSizeInfo()
561 if (ZSTD_isError(compressedSize) || decompressedBound == ZSTD_CONTENTSIZE_ERROR) in ZSTD_decompressBound()
[all …]
/freebsd-13-stable/sys/contrib/zstd/lib/legacy/
HDzstd_legacy.h238 frameSizeInfo.decompressedBound = ZSTD_CONTENTSIZE_ERROR; in ZSTD_findFrameSizeInfoLegacy()
243 frameSizeInfo.decompressedBound = ZSTD_CONTENTSIZE_ERROR; in ZSTD_findFrameSizeInfoLegacy()
HDzstd_v01.c1346 #define ZSTD_CONTENTSIZE_ERROR (0ULL - 2) macro
2013 *dBound = ZSTD_CONTENTSIZE_ERROR; in ZSTD_errorFrameSizeInfoLegacy()
HDzstd_v03.c2381 #define ZSTD_CONTENTSIZE_ERROR (0ULL - 2) macro
2977 *dBound = ZSTD_CONTENTSIZE_ERROR; in ZSTD_errorFrameSizeInfoLegacy()
HDzstd_v04.c385 #define ZSTD_CONTENTSIZE_ERROR (0ULL - 2) macro
3144 *dBound = ZSTD_CONTENTSIZE_ERROR; in ZSTD_errorFrameSizeInfoLegacy()
HDzstd_v02.c2740 #define ZSTD_CONTENTSIZE_ERROR (0ULL - 2) macro
3336 *dBound = ZSTD_CONTENTSIZE_ERROR; in ZSTD_errorFrameSizeInfoLegacy()
HDzstd_v06.c513 #define ZSTD_CONTENTSIZE_ERROR (0ULL - 2) macro
3668 *dBound = ZSTD_CONTENTSIZE_ERROR; in ZSTD_errorFrameSizeInfoLegacy()
HDzstd_v05.c498 #define ZSTD_CONTENTSIZE_ERROR (0ULL - 2) macro
3531 *dBound = ZSTD_CONTENTSIZE_ERROR; in ZSTD_errorFrameSizeInfoLegacy()
HDzstd_v07.c2747 #define ZSTD_CONTENTSIZE_ERROR (0ULL - 2) macro
3913 *dBound = ZSTD_CONTENTSIZE_ERROR; in ZSTD_errorFrameSizeInfoLegacy()
/freebsd-13-stable/sys/contrib/openzfs/module/zstd/lib/
HDzstd.h178 #define ZSTD_CONTENTSIZE_ERROR (0ULL - 2) macro
HDzstd.c3238 #define ZSTD_CONTENTSIZE_ERROR (0ULL - 2) macro
24048 frameSizeInfo.decompressedBound = ZSTD_CONTENTSIZE_ERROR; in ZSTD_findFrameSizeInfoLegacy()
24053 frameSizeInfo.decompressedBound = ZSTD_CONTENTSIZE_ERROR; in ZSTD_findFrameSizeInfoLegacy()
24851 return ZSTD_CONTENTSIZE_ERROR; in ZSTD_getFrameContentSize()
24891 return ZSTD_CONTENTSIZE_ERROR; in ZSTD_findDecompressedSize()
24901 if (ret >= ZSTD_CONTENTSIZE_ERROR) return ret; in ZSTD_findDecompressedSize()
24904 if (totalDstSize + ret < totalDstSize) return ZSTD_CONTENTSIZE_ERROR; in ZSTD_findDecompressedSize()
24909 return ZSTD_CONTENTSIZE_ERROR; in ZSTD_findDecompressedSize()
24917 if (srcSize) return ZSTD_CONTENTSIZE_ERROR; in ZSTD_findDecompressedSize()
24933 ZSTD_STATIC_ASSERT(ZSTD_CONTENTSIZE_ERROR < ZSTD_CONTENTSIZE_UNKNOWN); in ZSTD_getDecompressedSize()
[all …]
/freebsd-13-stable/sys/contrib/zstd/lib/
HDzstd.h158 #define ZSTD_CONTENTSIZE_ERROR (0ULL - 2) macro
/freebsd-13-stable/sys/contrib/zstd/programs/
HDfileio.c2841 if ( frameContentSize == ZSTD_CONTENTSIZE_ERROR in FIO_analyzeFrames()