HomeSort by: relevance | last modified time | path
    Searched defs:expectedSize (Results 1 - 2 of 2) sorted by relevancy

  /src/external/bsd/zstd/dist/tests/fuzz/
simple_decompress.c 46 unsigned long long const expectedSize = ZSTD_findDecompressedSize(src, size);
47 FUZZ_ASSERT(expectedSize != ZSTD_CONTENTSIZE_ERROR);
48 FUZZ_ASSERT(expectedSize == ZSTD_CONTENTSIZE_UNKNOWN || expectedSize == dSize);
  /src/external/bsd/zstd/dist/lib/decompress/
zstd_decompress.c 1101 unsigned long long const expectedSize = ZSTD_getFrameContentSize(src, srcSize);
1102 RETURN_ERROR_IF(expectedSize == ZSTD_CONTENTSIZE_ERROR, corruption_detected, "Corrupted frame header!");
1103 if (expectedSize != ZSTD_CONTENTSIZE_UNKNOWN) {
1104 RETURN_ERROR_IF(expectedSize != decodedSize, corruption_detected,

Completed in 19 milliseconds