Searched refs:ZSTD_CONTENTSIZE_ERROR (Results 1 – 3 of 3) sorted by relevance
416 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()
118 #define ZSTD_CONTENTSIZE_ERROR (0ULL - 2) macro
1827 … if (frameContentSize == ZSTD_CONTENTSIZE_ERROR || frameContentSize == ZSTD_CONTENTSIZE_UNKNOWN) { in getFileInfo_fileConfirmed()