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

  /src/external/bsd/zstd/dist/lib/common/
fse_decompress.c 193 RETURN_ERROR_IF(BIT_reloadDStream(&bitD)==BIT_DStream_overflow, corruption_detected, ""); local
  /src/external/bsd/zstd/dist/lib/decompress/
zstd_decompress_block.c 74 RETURN_ERROR_IF(bpPtr->blockType == bt_reserved, corruption_detected, "");
139 RETURN_ERROR_IF(srcSize < MIN_CBLOCK_SIZE, corruption_detected, "");
153 RETURN_ERROR_IF(srcSize < 5, corruption_detected, "srcSize >= MIN_CBLOCK_SIZE == 2; here we need up to 5 for case 3");
186 RETURN_ERROR_IF(litSize > blockSizeMax, corruption_detected, "");
191 RETURN_ERROR_IF(litCSize + lhSize > srcSize, corruption_detected, "");
241 RETURN_ERROR_IF(HUF_isError(hufSuccess), corruption_detected, ""); local
266 RETURN_ERROR_IF(srcSize<3, corruption_detected, "srcSize >= MIN_CBLOCK_SIZE == 2; here we need lhSize = 3");
272 RETURN_ERROR_IF(litSize > blockSizeMax, corruption_detected, "");
276 RETURN_ERROR_IF(litSize+lhSize > srcSize, corruption_detected, "");
310 RETURN_ERROR_IF(srcSize<3, corruption_detected, "srcSize >= MIN_CBLOCK_SIZE == 2; here we need lhSize+1 = 3")
683 RETURN_ERROR_IF(FSE_isError(headerSize), corruption_detected, ""); local
745 RETURN_ERROR_IF(ZSTD_isError(llhSize), corruption_detected, "ZSTD_buildSeqTable failed"); local
757 RETURN_ERROR_IF(ZSTD_isError(ofhSize), corruption_detected, "ZSTD_buildSeqTable failed"); local
769 RETURN_ERROR_IF(ZSTD_isError(mlhSize), corruption_detected, "ZSTD_buildSeqTable failed"); local
1054 RETURN_ERROR_IF(UNLIKELY(sequence.offset > (size_t)(oLitEnd - virtualStart)), corruption_detected, ""); local
1147 RETURN_ERROR_IF(UNLIKELY(sequence.offset > (size_t)(oLitEnd - virtualStart)), corruption_detected, ""); local
    [all...]

Completed in 33 milliseconds