Searched refs:offcodeLog (Results 1 – 5 of 5) sorted by relevance
| /freebsd-12.1/sys/contrib/zstd/lib/decompress/ |
| H A D | zstd_decompress.c | 2188 U32 offcodeMaxValue = MaxOff, offcodeLog; in ZSTD_loadEntropy() local 2189 …t offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dictPtr, dictEn… in ZSTD_loadEntropy() 2192 if (offcodeLog > OffFSELog) return ERROR(dictionary_corrupted); in ZSTD_loadEntropy() 2196 offcodeLog); in ZSTD_loadEntropy()
|
| /freebsd-12.1/sys/contrib/zstd/lib/legacy/ |
| H A D | zstd_v06.c | 3789 U32 offcodeMaxValue=MaxOff, offcodeLog; in ZSTDv06_loadEntropy() local 3790 …offcodeHeaderSize = FSEv06_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dict, dictSize… in ZSTDv06_loadEntropy() 3792 if (offcodeLog > OffFSELog) return ERROR(dictionary_corrupted); in ZSTDv06_loadEntropy() 3793 …t const errorCode = FSEv06_buildDTable(dctx->OffTable, offcodeNCount, offcodeMaxValue, offcodeLog); in ZSTDv06_loadEntropy()
|
| H A D | zstd_v05.c | 3633 U32 offcodeMaxValue=MaxOff, offcodeLog; in ZSTDv05_loadEntropy() local 3644 …offcodeHeaderSize = FSEv05_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dict, dictSize… in ZSTDv05_loadEntropy() 3646 if (offcodeLog > OffFSEv05Log) return ERROR(dictionary_corrupted); in ZSTDv05_loadEntropy() 3647 errorCode = FSEv05_buildDTable(dctx->OffTable, offcodeNCount, offcodeMaxValue, offcodeLog); in ZSTDv05_loadEntropy()
|
| H A D | zstd_v07.c | 4067 U32 offcodeMaxValue=MaxOff, offcodeLog; in ZSTDv07_loadEntropy() local 4068 …ffcodeHeaderSize = FSEv07_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dictPtr, dictEn… in ZSTDv07_loadEntropy() 4070 if (offcodeLog > OffFSELog) return ERROR(dictionary_corrupted); in ZSTDv07_loadEntropy() 4071 …t const errorCode = FSEv07_buildDTable(dctx->OffTable, offcodeNCount, offcodeMaxValue, offcodeLog); in ZSTDv07_loadEntropy()
|
| /freebsd-12.1/sys/contrib/zstd/lib/compress/ |
| H A D | zstd_compress.c | 2280 { unsigned offcodeLog; in ZSTD_loadZstdDictionary() local 2281 …t offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dictPtr, dictEn… in ZSTD_loadZstdDictionary() 2283 if (offcodeLog > OffFSELog) return ERROR(dictionary_corrupted); in ZSTD_loadZstdDictionary() 2285 …CTable_wksp(bs->entropy.offcodeCTable, offcodeNCount, offcodeMaxValue, offcodeLog, workspace, HUF_… in ZSTD_loadZstdDictionary()
|