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

  /src/external/bsd/zstd/dist/lib/decompress/
zstd_decompress.c 1481 size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dictPtr, (size_t)(dictEnd-dictPtr));
1482 RETURN_ERROR_IF(FSE_isError(offcodeHeaderSize), dictionary_corrupted, "");
1491 dictPtr += offcodeHeaderSize;
  /src/external/bsd/zstd/dist/lib/compress/
zstd_compress.c 4961 size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dictPtr, dictEnd-dictPtr);
4962 RETURN_ERROR_IF(FSE_isError(offcodeHeaderSize), dictionary_corrupted, "");
4971 dictPtr += offcodeHeaderSize;
  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v05.c 3623 size_t hSize, offcodeHeaderSize, matchlengthHeaderSize, errorCode, litlengthHeaderSize;
3636 offcodeHeaderSize = FSEv05_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dict, dictSize);
3637 if (FSEv05_isError(offcodeHeaderSize)) return ERROR(dictionary_corrupted);
3641 dict = (const char*)dict + offcodeHeaderSize;
3642 dictSize -= offcodeHeaderSize;
3659 return hSize + offcodeHeaderSize + matchlengthHeaderSize + litlengthHeaderSize;
zstd_v06.c 3760 size_t hSize, offcodeHeaderSize, matchlengthHeaderSize, litlengthHeaderSize;
3769 offcodeHeaderSize = FSEv06_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dict, dictSize);
3770 if (FSEv06_isError(offcodeHeaderSize)) return ERROR(dictionary_corrupted);
3774 dict = (const char*)dict + offcodeHeaderSize;
3775 dictSize -= offcodeHeaderSize;
3799 return hSize + offcodeHeaderSize + matchlengthHeaderSize + litlengthHeaderSize;
zstd_v07.c 4053 size_t const offcodeHeaderSize = FSEv07_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dictPtr, dictEnd-dictPtr);
4054 if (FSEv07_isError(offcodeHeaderSize)) return ERROR(dictionary_corrupted);
4058 dictPtr += offcodeHeaderSize;

Completed in 31 milliseconds