Lines Matching refs:ZSTD_CONTENTSIZE_ERROR
557 return ZSTD_CONTENTSIZE_ERROR; in ZSTD_getFrameContentSize()
630 if (ZSTD_isError(skippableSize)) return ZSTD_CONTENTSIZE_ERROR; in ZSTD_findDecompressedSize()
639 if (fcs >= ZSTD_CONTENTSIZE_ERROR) return fcs; in ZSTD_findDecompressedSize()
642 return ZSTD_CONTENTSIZE_ERROR; /* check for overflow */ in ZSTD_findDecompressedSize()
647 if (ZSTD_isError(frameSrcSize)) return ZSTD_CONTENTSIZE_ERROR; in ZSTD_findDecompressedSize()
655 if (srcSize) return ZSTD_CONTENTSIZE_ERROR; in ZSTD_findDecompressedSize()
671 ZSTD_STATIC_ASSERT(ZSTD_CONTENTSIZE_ERROR < ZSTD_CONTENTSIZE_UNKNOWN); in ZSTD_getDecompressedSize()
672 return (ret >= ZSTD_CONTENTSIZE_ERROR) ? 0 : ret; in ZSTD_getDecompressedSize()
708 frameSizeInfo.decompressedBound = ZSTD_CONTENTSIZE_ERROR; in ZSTD_errorFrameSizeInfo()
802 if (ZSTD_isError(compressedSize) || decompressedBound == ZSTD_CONTENTSIZE_ERROR) in ZSTD_decompressBound()
803 return ZSTD_CONTENTSIZE_ERROR; in ZSTD_decompressBound()
825 if (ZSTD_isError(compressedSize) || decompressedBound == ZSTD_CONTENTSIZE_ERROR) in ZSTD_decompressionMargin()