Searched refs:ZSTD_CONTENTSIZE_ERROR (Results 1 – 2 of 2) sorted by relevance
525 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 …]
150 #define ZSTD_CONTENTSIZE_ERROR (0ULL - 2) macro