Searched refs:LLTable (Results 1 - 5 of 5) sorted by relevance
/kernel/linux/linux-6.6/lib/zstd/decompress/ |
H A D | zstd_decompress_internal.h | 80 ZSTD_seqSymbol LLTable[SEQSYMBOL_TABLE_SIZE(LLFSELog)]; /* Note : Space reserved for FSE Tables */ member
|
H A D | zstd_decompress.c | 1297 ZSTD_STATIC_ASSERT(offsetof(ZSTD_entropyDTables_t, OFTable) == offsetof(ZSTD_entropyDTables_t, LLTable) + sizeof(entropy->LLTable)); in ZSTD_loadDEntropy() 1299 ZSTD_STATIC_ASSERT(sizeof(entropy->LLTable) + sizeof(entropy->OFTable) + sizeof(entropy->MLTable) >= HUF_DECOMPRESS_WORKSPACE_SIZE); in ZSTD_loadDEntropy() 1300 { void* const workspace = &entropy->LLTable; /* use fse tables as temporary workspace; implies fse tables are grouped together */ in ZSTD_loadDEntropy() 1301 size_t const workspaceSize = sizeof(entropy->LLTable) + sizeof(entropy->OFTable) + sizeof(entropy->MLTable); in ZSTD_loadDEntropy() 1352 ZSTD_buildFSETable( entropy->LLTable, in ZSTD_loadDEntropy() 1412 dctx->LLTptr = dctx->entropy.LLTable; in ZSTD_decompressBegin()
|
H A D | zstd_ddict.c | 72 dctx->LLTptr = ddict->entropy.LLTable; in ZSTD_copyDDictParameters()
|
H A D | zstd_decompress_block.c | 692 { size_t const llhSize = ZSTD_buildSeqTable(dctx->entropy.LLTable, &dctx->LLTptr, in ZSTD_decodeSeqHeaders()
|
/kernel/linux/linux-5.10/lib/zstd/ |
H A D | decompress.c | 69 FSE_DTable LLTable[FSE_DTABLE_SIZE_U32(LLFSELog)]; member 119 dctx->LLTptr = dctx->entropy.LLTable; in ZSTD_decompressBegin() 836 size_t const llhSize = ZSTD_buildSeqTable(dctx->entropy.LLTable, &dctx->LLTptr, LLtype, MaxLL, LLFSELog, ip, iend - ip, in ZSTD_decodeSeqHeaders() 1922 CHECK_E(FSE_buildDTable_wksp(entropy->LLTable, litlengthNCount, litlengthMaxValue, litlengthLog, entropy->workspace, sizeof(entropy->workspace)), dictionary_corrupted); in ZSTD_loadEntropy() 2007 dstDCtx->LLTptr = ddict->entropy.LLTable; in ZSTD_refDDict()
|
Completed in 13 milliseconds