Searched refs:OFTable (Results 1 - 5 of 5) sorted by relevance
/kernel/linux/linux-6.6/lib/zstd/decompress/ |
H A D | zstd_decompress_internal.h | 81 ZSTD_seqSymbol OFTable[SEQSYMBOL_TABLE_SIZE(OffFSELog)]; /* is also used as temporary workspace while building hufTable during DDict creation */ 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() 1298 ZSTD_STATIC_ASSERT(offsetof(ZSTD_entropyDTables_t, MLTable) == offsetof(ZSTD_entropyDTables_t, OFTable) + sizeof(entropy->OFTable)); in ZSTD_loadDEntropy() 1299 ZSTD_STATIC_ASSERT(sizeof(entropy->LLTable) + sizeof(entropy->OFTable) + sizeof(entropy->MLTable) >= HUF_DECOMPRESS_WORKSPACE_SIZE); in ZSTD_loadDEntropy() 1301 size_t const workspaceSize = sizeof(entropy->LLTable) + sizeof(entropy->OFTable) + sizeof(entropy->MLTable); in ZSTD_loadDEntropy() 1322 ZSTD_buildFSETable( entropy->OFTable, in ZSTD_loadDEntropy() 1414 dctx->OFTptr = dctx->entropy.OFTable; in ZSTD_decompressBegin()
|
H A D | zstd_ddict.c | 74 dctx->OFTptr = ddict->entropy.OFTable; in ZSTD_copyDDictParameters()
|
H A D | zstd_decompress_block.c | 704 { size_t const ofhSize = ZSTD_buildSeqTable(dctx->entropy.OFTable, &dctx->OFTptr, in ZSTD_decodeSeqHeaders()
|
/kernel/linux/linux-5.10/lib/zstd/ |
H A D | decompress.c | 70 FSE_DTable OFTable[FSE_DTABLE_SIZE_U32(OffFSELog)]; member 121 dctx->OFTptr = dctx->entropy.OFTable; in ZSTD_decompressBegin() 843 size_t const ofhSize = ZSTD_buildSeqTable(dctx->entropy.OFTable, &dctx->OFTptr, OFtype, MaxOff, OffFSELog, ip, iend - ip, in ZSTD_decodeSeqHeaders() 1898 CHECK_E(FSE_buildDTable_wksp(entropy->OFTable, offcodeNCount, offcodeMaxValue, offcodeLog, entropy->workspace, sizeof(entropy->workspace)), dictionary_corrupted); in ZSTD_loadEntropy() 2009 dstDCtx->OFTptr = ddict->entropy.OFTable; in ZSTD_refDDict()
|
Completed in 12 milliseconds