Home
last modified time | relevance | path

Searched refs:offcodeHeaderSize (Results 1 – 5 of 5) sorted by relevance

/freebsd-12-stable/sys/contrib/zstd/lib/legacy/
Dzstd_v05.c3631 size_t hSize, offcodeHeaderSize, matchlengthHeaderSize, errorCode, litlengthHeaderSize; in ZSTDv05_loadEntropy() local
3644offcodeHeaderSize = FSEv05_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dict, dictSize… in ZSTDv05_loadEntropy()
3645 if (FSEv05_isError(offcodeHeaderSize)) return ERROR(dictionary_corrupted); in ZSTDv05_loadEntropy()
3649 dict = (const char*)dict + offcodeHeaderSize; in ZSTDv05_loadEntropy()
3650 dictSize -= offcodeHeaderSize; in ZSTDv05_loadEntropy()
3667 return hSize + offcodeHeaderSize + matchlengthHeaderSize + litlengthHeaderSize; in ZSTDv05_loadEntropy()
Dzstd_v06.c3781 size_t hSize, offcodeHeaderSize, matchlengthHeaderSize, litlengthHeaderSize; in ZSTDv06_loadEntropy() local
3790offcodeHeaderSize = FSEv06_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dict, dictSize… in ZSTDv06_loadEntropy()
3791 if (FSEv06_isError(offcodeHeaderSize)) return ERROR(dictionary_corrupted); in ZSTDv06_loadEntropy()
3795 dict = (const char*)dict + offcodeHeaderSize; in ZSTDv06_loadEntropy()
3796 dictSize -= offcodeHeaderSize; in ZSTDv06_loadEntropy()
3820 return hSize + offcodeHeaderSize + matchlengthHeaderSize + litlengthHeaderSize; in ZSTDv06_loadEntropy()
Dzstd_v07.c4068 …size_t const offcodeHeaderSize = FSEv07_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, d… in ZSTDv07_loadEntropy() local
4069 if (FSEv07_isError(offcodeHeaderSize)) return ERROR(dictionary_corrupted); in ZSTDv07_loadEntropy()
4073 dictPtr += offcodeHeaderSize; in ZSTDv07_loadEntropy()
/freebsd-12-stable/sys/contrib/zstd/lib/decompress/
Dzstd_decompress.c2189 …size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dict… in ZSTD_loadEntropy() local
2190 if (FSE_isError(offcodeHeaderSize)) return ERROR(dictionary_corrupted); in ZSTD_loadEntropy()
2197 dictPtr += offcodeHeaderSize; in ZSTD_loadEntropy()
/freebsd-12-stable/sys/contrib/zstd/lib/compress/
Dzstd_compress.c2281 …size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dict… in ZSTD_loadZstdDictionary() local
2282 if (FSE_isError(offcodeHeaderSize)) return ERROR(dictionary_corrupted); in ZSTD_loadZstdDictionary()
2287 dictPtr += offcodeHeaderSize; in ZSTD_loadZstdDictionary()