Home
last modified time | relevance | path

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

/external/zstd/examples/
Dsimple_decompression.c27 CHECK(rSize != ZSTD_CONTENTSIZE_ERROR, "%s: not compressed by zstd!", fname); in decompress()
Ddictionary_decompression.c41 CHECK(rSize != ZSTD_CONTENTSIZE_ERROR, "%s: not compressed by zstd!", fname); in decompress()
/external/zstd/lib/decompress/
Dzstd_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 …]
/external/zstd/lib/legacy/
Dzstd_legacy.h238 frameSizeInfo.decompressedBound = ZSTD_CONTENTSIZE_ERROR; in ZSTD_findFrameSizeInfoLegacy()
243 frameSizeInfo.decompressedBound = ZSTD_CONTENTSIZE_ERROR; in ZSTD_findFrameSizeInfoLegacy()
Dzstd_v01.c1346 #define ZSTD_CONTENTSIZE_ERROR (0ULL - 2) macro
2013 *dBound = ZSTD_CONTENTSIZE_ERROR; in ZSTD_errorFrameSizeInfoLegacy()
Dzstd_v03.c2381 #define ZSTD_CONTENTSIZE_ERROR (0ULL - 2) macro
2977 *dBound = ZSTD_CONTENTSIZE_ERROR; in ZSTD_errorFrameSizeInfoLegacy()
Dzstd_v04.c385 #define ZSTD_CONTENTSIZE_ERROR (0ULL - 2) macro
3144 *dBound = ZSTD_CONTENTSIZE_ERROR; in ZSTD_errorFrameSizeInfoLegacy()
Dzstd_v02.c2740 #define ZSTD_CONTENTSIZE_ERROR (0ULL - 2) macro
3336 *dBound = ZSTD_CONTENTSIZE_ERROR; in ZSTD_errorFrameSizeInfoLegacy()
Dzstd_v05.c498 #define ZSTD_CONTENTSIZE_ERROR (0ULL - 2) macro
3531 *dBound = ZSTD_CONTENTSIZE_ERROR; in ZSTD_errorFrameSizeInfoLegacy()
Dzstd_v06.c513 #define ZSTD_CONTENTSIZE_ERROR (0ULL - 2) macro
3668 *dBound = ZSTD_CONTENTSIZE_ERROR; in ZSTD_errorFrameSizeInfoLegacy()
Dzstd_v07.c2747 #define ZSTD_CONTENTSIZE_ERROR (0ULL - 2) macro
3913 *dBound = ZSTD_CONTENTSIZE_ERROR; in ZSTD_errorFrameSizeInfoLegacy()
/external/mesa3d/src/compiler/spirv/
Dnir_load_libclc.c149 cmp_size == ZSTD_CONTENTSIZE_ERROR) { in map_clc_data()
/external/zstd/lib/
Dzstd.h158 #define ZSTD_CONTENTSIZE_ERROR (0ULL - 2) macro
/external/zstd/programs/
Dfileio.c2841 if ( frameContentSize == ZSTD_CONTENTSIZE_ERROR in FIO_analyzeFrames()
/external/zstd/tests/
Dfuzzer.c446 if (bound != ZSTD_CONTENTSIZE_ERROR) goto _output_error; in basicUnitTests()