Home
last modified time | relevance | path

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

/freebsd-12-stable/sys/contrib/zstd/lib/decompress/
Dzstd_decompress.c416 return ZSTD_CONTENTSIZE_ERROR; in ZSTD_getFrameContentSize()
443 return ZSTD_CONTENTSIZE_ERROR; in ZSTD_findDecompressedSize()
452 if (ret >= ZSTD_CONTENTSIZE_ERROR) return ret; in ZSTD_findDecompressedSize()
455 if (totalDstSize + ret < totalDstSize) return ZSTD_CONTENTSIZE_ERROR; in ZSTD_findDecompressedSize()
460 return ZSTD_CONTENTSIZE_ERROR; in ZSTD_findDecompressedSize()
468 if (srcSize) return ZSTD_CONTENTSIZE_ERROR; in ZSTD_findDecompressedSize()
484 ZSTD_STATIC_ASSERT(ZSTD_CONTENTSIZE_ERROR < ZSTD_CONTENTSIZE_UNKNOWN); in ZSTD_getDecompressedSize()
485 return (ret >= ZSTD_CONTENTSIZE_ERROR) ? 0 : ret; in ZSTD_getDecompressedSize()
/freebsd-12-stable/sys/contrib/zstd/lib/
Dzstd.h118 #define ZSTD_CONTENTSIZE_ERROR (0ULL - 2) macro
/freebsd-12-stable/sys/contrib/zstd/programs/
Dfileio.c1827 … if (frameContentSize == ZSTD_CONTENTSIZE_ERROR || frameContentSize == ZSTD_CONTENTSIZE_UNKNOWN) { in getFileInfo_fileConfirmed()