Searched refs:offcodeNCount (Results 1 - 4 of 4) sorted by relevance
/kernel/linux/linux-6.6/lib/zstd/decompress/ |
H A D | zstd_decompress.c | 1316 { short offcodeNCount[MaxOff+1]; in ZSTD_loadDEntropy() local 1318 size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dictPtr, (size_t)(dictEnd-dictPtr)); in ZSTD_loadDEntropy() 1323 offcodeNCount, offcodeMaxValue, in ZSTD_loadDEntropy()
|
/kernel/linux/linux-5.10/lib/zstd/ |
H A D | decompress.c | 1891 short offcodeNCount[MaxOff + 1]; in ZSTD_loadEntropy() local 1893 size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dictPtr, dictEnd - dictPtr); in ZSTD_loadEntropy() 1898 CHECK_E(FSE_buildDTable_wksp(entropy->OFTable, offcodeNCount, offcodeMaxValue, offcodeLog, entropy->workspace, sizeof(entropy->workspace)), dictionary_corrupted); in ZSTD_loadEntropy()
|
H A D | compress.c | 2630 short offcodeNCount[MaxOff + 1]; in ZSTD_loadZstdDictionary() local 2646 size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dictPtr, dictEnd - dictPtr); in ZSTD_loadZstdDictionary() 2652 CHECK_E(FSE_buildCTable_wksp(cctx->offcodeCTable, offcodeNCount, offcodeMaxValue, offcodeLog, cctx->tmpCounters, sizeof(cctx->tmpCounters)), in ZSTD_loadZstdDictionary() 2703 CHECK_F(ZSTD_checkDictNCount(offcodeNCount, offcodeMaxValue, MIN(offcodeMax, MaxOff))); in ZSTD_loadZstdDictionary()
|
/kernel/linux/linux-6.6/lib/zstd/compress/ |
H A D | zstd_compress.c | 4226 short offcodeNCount[MaxOff+1]; in ZSTD_loadCEntropy() local 4249 size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dictPtr, dictEnd-dictPtr); in ZSTD_loadCEntropy() 4255 offcodeNCount, MaxOff, offcodeLog, in ZSTD_loadCEntropy() 4303 bs->entropy.fse.offcode_repeatMode = ZSTD_dictNCountRepeat(offcodeNCount, offcodeMaxValue, MIN(offcodeMax, MaxOff)); in ZSTD_loadCEntropy()
|
Completed in 26 milliseconds