Home
last modified time | relevance | path

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

/freebsd-12-stable/sys/contrib/zstd/lib/decompress/
Dzstd_decompress.c2188 U32 offcodeMaxValue = MaxOff, offcodeLog; in ZSTD_loadEntropy() local
2189 …size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dict… in ZSTD_loadEntropy()
2191 if (offcodeMaxValue > MaxOff) return ERROR(dictionary_corrupted); in ZSTD_loadEntropy()
2194 offcodeNCount, offcodeMaxValue, in ZSTD_loadEntropy()
/freebsd-12-stable/sys/contrib/zstd/lib/compress/
Dzstd_compress.c2264 unsigned offcodeMaxValue = MaxOff; in ZSTD_loadZstdDictionary() local
2281 …size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dict… in ZSTD_loadZstdDictionary()
2285 …CHECK_E( FSE_buildCTable_wksp(bs->entropy.offcodeCTable, offcodeNCount, offcodeMaxValue, offcodeLo… in ZSTD_loadZstdDictionary()
2327 CHECK_F (ZSTD_checkDictNCount(offcodeNCount, offcodeMaxValue, MIN(offcodeMax, MaxOff))); in ZSTD_loadZstdDictionary()
/freebsd-12-stable/sys/contrib/zstd/lib/legacy/
Dzstd_v05.c3633 U32 offcodeMaxValue=MaxOff, offcodeLog; in ZSTDv05_loadEntropy() local
3644 …offcodeHeaderSize = FSEv05_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dict, dictSize… in ZSTDv05_loadEntropy()
3647 errorCode = FSEv05_buildDTable(dctx->OffTable, offcodeNCount, offcodeMaxValue, offcodeLog); in ZSTDv05_loadEntropy()
Dzstd_v06.c3789 U32 offcodeMaxValue=MaxOff, offcodeLog; in ZSTDv06_loadEntropy() local
3790 …offcodeHeaderSize = FSEv06_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dict, dictSize… in ZSTDv06_loadEntropy()
3793 …t const errorCode = FSEv06_buildDTable(dctx->OffTable, offcodeNCount, offcodeMaxValue, offcodeLog); in ZSTDv06_loadEntropy()
Dzstd_v07.c4067 U32 offcodeMaxValue=MaxOff, offcodeLog; in ZSTDv07_loadEntropy() local
4068 …size_t const offcodeHeaderSize = FSEv07_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, d… in ZSTDv07_loadEntropy()
4071 …t const errorCode = FSEv07_buildDTable(dctx->OffTable, offcodeNCount, offcodeMaxValue, offcodeLog); in ZSTDv07_loadEntropy()