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

  /src/external/bsd/zstd/dist/lib/decompress/
zstd_decompress.c 1456 RETURN_ERROR_IF(dictSize <= 8, dictionary_corrupted, "dict is too small");
1475 RETURN_ERROR_IF(HUF_isError(hSize), dictionary_corrupted, ""); local
1482 RETURN_ERROR_IF(FSE_isError(offcodeHeaderSize), dictionary_corrupted, ""); local
1483 RETURN_ERROR_IF(offcodeMaxValue > MaxOff, dictionary_corrupted, "");
1484 RETURN_ERROR_IF(offcodeLog > OffFSELog, dictionary_corrupted, "");
1497 RETURN_ERROR_IF(FSE_isError(matchlengthHeaderSize), dictionary_corrupted, ""); local
1498 RETURN_ERROR_IF(matchlengthMaxValue > MaxML, dictionary_corrupted, "");
1499 RETURN_ERROR_IF(matchlengthLog > MLFSELog, dictionary_corrupted, "");
1512 RETURN_ERROR_IF(FSE_isError(litlengthHeaderSize), dictionary_corrupted, ""); local
1513 RETURN_ERROR_IF(litlengthMaxValue > MaxLL, dictionary_corrupted, "");
1548 RETURN_ERROR_IF(ZSTD_isError(eSize), dictionary_corrupted, ""); local
    [all...]
  /src/external/bsd/zstd/dist/lib/compress/
zstd_compress.c 4956 RETURN_ERROR_IF(HUF_isError(hufHeaderSize), dictionary_corrupted, ""); local
4962 RETURN_ERROR_IF(FSE_isError(offcodeHeaderSize), dictionary_corrupted, ""); local
4963 RETURN_ERROR_IF(offcodeLog > OffFSELog, dictionary_corrupted, "");
4969 dictionary_corrupted, "");
4977 RETURN_ERROR_IF(FSE_isError(matchlengthHeaderSize), dictionary_corrupted, ""); local
4978 RETURN_ERROR_IF(matchlengthLog > MLFSELog, dictionary_corrupted, "");
4983 dictionary_corrupted, "");
4991 RETURN_ERROR_IF(FSE_isError(litlengthHeaderSize), dictionary_corrupted, ""); local
4992 RETURN_ERROR_IF(litlengthLog > LLFSELog, dictionary_corrupted, "");
4997 dictionary_corrupted, "");
    [all...]

Completed in 28 milliseconds