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

/freebsd-13-stable/sys/contrib/zstd/lib/decompress/
H A Dzstd_decompress.c1098 unsigned offcodeMaxValue = MaxOff, offcodeLog; local
1099 size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dictPtr, (size_t)(dictEnd-dictPtr));
1102 RETURN_ERROR_IF(offcodeLog > OffFSELog, dictionary_corrupted, "");
1106 offcodeLog,
/freebsd-13-stable/sys/contrib/zstd/lib/legacy/
H A Dzstd_v05.c3674 unsigned offcodeMaxValue=MaxOff, offcodeLog; local
3685 offcodeHeaderSize = FSEv05_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dict, dictSize);
3687 if (offcodeLog > OffFSEv05Log) return ERROR(dictionary_corrupted);
3688 errorCode = FSEv05_buildDTable(dctx->OffTable, offcodeNCount, offcodeMaxValue, offcodeLog);
H A Dzstd_v06.c3821 U32 offcodeMaxValue=MaxOff, offcodeLog; local
3822 offcodeHeaderSize = FSEv06_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dict, dictSize);
3824 if (offcodeLog > OffFSELog) return ERROR(dictionary_corrupted);
3825 { size_t const errorCode = FSEv06_buildDTable(dctx->OffTable, offcodeNCount, offcodeMaxValue, offcodeLog);
H A Dzstd_v07.c4108 U32 offcodeMaxValue=MaxOff, offcodeLog; local
4109 size_t const offcodeHeaderSize = FSEv07_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dictPtr, dictEnd-dictPtr);
4111 if (offcodeLog > OffFSELog) return ERROR(dictionary_corrupted);
4112 { size_t const errorCode = FSEv07_buildDTable(dctx->OffTable, offcodeNCount, offcodeMaxValue, offcodeLog);
/freebsd-13-stable/sys/contrib/zstd/lib/compress/
H A Dzstd_compress.c3192 { unsigned offcodeLog; local
3193 size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dictPtr, dictEnd-dictPtr);
3195 RETURN_ERROR_IF(offcodeLog > OffFSELog, dictionary_corrupted, "");
3199 offcodeNCount, MaxOff, offcodeLog,
/freebsd-13-stable/sys/contrib/openzfs/module/zstd/lib/
H A Dzstd.c16010 { unsigned offcodeLog; local
16011 size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, offcodeMaxValue, &offcodeLog, dictPtr, dictEnd-dictPtr);
16013 RETURN_ERROR_IF(offcodeLog > OffFSELog, dictionary_corrupted, "");
16018 offcodeNCount, MaxOff, offcodeLog,
25592 unsigned offcodeMaxValue = MaxOff, offcodeLog; local
[all...]

Completed in 422 milliseconds