Searched refs:offcodeLog (Results 1 - 7 of 7) sorted by relevance

/freebsd-current/sys/contrib/openzfs/module/zstd/lib/decompress/
H A Dzstd_decompress.c1086 unsigned offcodeMaxValue = MaxOff, offcodeLog; local
1087 size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dictPtr, dictEnd-dictPtr);
1090 RETURN_ERROR_IF(offcodeLog > OffFSELog, dictionary_corrupted, "");
1094 offcodeLog);
/freebsd-current/sys/contrib/zstd/lib/decompress/
H A Dzstd_decompress.c1364 unsigned offcodeMaxValue = MaxOff, offcodeLog; local
1365 size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dictPtr, (size_t)(dictEnd-dictPtr));
1368 RETURN_ERROR_IF(offcodeLog > OffFSELog, dictionary_corrupted, "");
1372 offcodeLog,
/freebsd-current/sys/contrib/zstd/lib/legacy/
H A Dzstd_v06.c3817 U32 offcodeMaxValue=MaxOff, offcodeLog; local
3818 offcodeHeaderSize = FSEv06_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dict, dictSize);
3820 if (offcodeLog > OffFSELog) return ERROR(dictionary_corrupted);
3821 { size_t const errorCode = FSEv06_buildDTable(dctx->OffTable, offcodeNCount, offcodeMaxValue, offcodeLog);
H A Dzstd_v05.c3670 unsigned offcodeMaxValue=MaxOff, offcodeLog; local
3681 offcodeHeaderSize = FSEv05_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dict, dictSize);
3683 if (offcodeLog > OffFSEv05Log) return ERROR(dictionary_corrupted);
3684 errorCode = FSEv05_buildDTable(dctx->OffTable, offcodeNCount, offcodeMaxValue, offcodeLog);
H A Dzstd_v07.c4104 U32 offcodeMaxValue=MaxOff, offcodeLog; local
4105 size_t const offcodeHeaderSize = FSEv07_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dictPtr, dictEnd-dictPtr);
4107 if (offcodeLog > OffFSELog) return ERROR(dictionary_corrupted);
4108 { size_t const errorCode = FSEv07_buildDTable(dctx->OffTable, offcodeNCount, offcodeMaxValue, offcodeLog);
/freebsd-current/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_compress.c2926 { unsigned offcodeLog; local
2927 size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, offcodeMaxValue, &offcodeLog, dictPtr, dictEnd-dictPtr);
2929 RETURN_ERROR_IF(offcodeLog > OffFSELog, dictionary_corrupted, "");
2934 offcodeNCount, MaxOff, offcodeLog,
/freebsd-current/sys/contrib/zstd/lib/compress/
H A Dzstd_compress.c4339 { unsigned offcodeLog; local
4340 size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dictPtr, dictEnd-dictPtr);
4342 RETURN_ERROR_IF(offcodeLog > OffFSELog, dictionary_corrupted, "");
4346 offcodeNCount, MaxOff, offcodeLog,

Completed in 285 milliseconds