Searched refs:hufTable (Results 1 - 7 of 7) sorted by path

/linux-master/lib/zstd/common/
H A Dhuf.h200 * Same as HUF_compress4X_wksp(), but considers using hufTable if *repeat != HUF_repeat_none.
201 * If it uses hufTable it does not modify hufTable or repeat.
202 * If it doesn't, it sets *repeat = HUF_repeat_none, and it sets hufTable to the table used.
209 HUF_CElt* hufTable, HUF_repeat* repeat, int preferRepeat, int bmi2, unsigned suspectUncompressible);
306 * Same as HUF_compress1X_wksp(), but considers using hufTable if *repeat != HUF_repeat_none.
307 * If it uses hufTable it does not modify hufTable or repeat.
308 * If it doesn't, it sets *repeat = HUF_repeat_none, and it sets hufTable to the table used.
315 HUF_CElt* hufTable, HUF_repea
[all...]
/linux-master/lib/zstd/compress/
H A Dhuf_compress.c1297 HUF_CElt* hufTable, HUF_repeat* repeat, int preferRepeat,
1302 workSpace, wkspSize, hufTable,
1328 HUF_CElt* hufTable, HUF_repeat* repeat, int preferRepeat, int bmi2, unsigned suspectUncompressible)
1333 hufTable, repeat, preferRepeat, bmi2, suspectUncompressible);
1293 HUF_compress1X_repeat(void* dst, size_t dstSize, const void* src, size_t srcSize, unsigned maxSymbolValue, unsigned huffLog, void* workSpace, size_t wkspSize, HUF_CElt* hufTable, HUF_repeat* repeat, int preferRepeat, int bmi2, unsigned suspectUncompressible) argument
1324 HUF_compress4X_repeat(void* dst, size_t dstSize, const void* src, size_t srcSize, unsigned maxSymbolValue, unsigned huffLog, void* workSpace, size_t wkspSize, HUF_CElt* hufTable, HUF_repeat* repeat, int preferRepeat, int bmi2, unsigned suspectUncompressible) argument
H A Dzstd_compress_superblock.c41 static size_t ZSTD_compressSubBlock_literal(const HUF_CElt* hufTable, argument
80 { const size_t cSize = singleStream ? HUF_compress1X_usingCTable(op, oend-op, literals, litSize, hufTable)
81 : HUF_compress4X_usingCTable(op, oend-op, literals, litSize, hufTable);
/linux-master/lib/zstd/decompress/
H A Dzstd_ddict.c75 dctx->HUFptr = ddict->entropy.hufTable;
134 ddict->entropy.hufTable[0] = (HUF_DTable)((HufLog)*0x1000001); /* cover both little and big endian */
H A Dzstd_decompress.c1304 size_t const hSize = HUF_readDTableX1_wksp(entropy->hufTable,
1308 size_t const hSize = HUF_readDTableX2_wksp(entropy->hufTable,
1406 dctx->entropy.hufTable[0] = (HUF_DTable)((HufLog)*0x1000001); /* cover both little and big endian */
1415 dctx->HUFptr = dctx->entropy.hufTable;
H A Dzstd_decompress_block.c174 PREFETCH_AREA(dctx->HUFptr, sizeof(dctx->entropy.hufTable));
191 dctx->entropy.hufTable, dctx->litBuffer, litSize,
196 dctx->entropy.hufTable, dctx->litBuffer, litSize,
202 dctx->entropy.hufTable, dctx->litBuffer, litSize,
220 if (litEncType==set_compressed) dctx->HUFptr = dctx->entropy.hufTable;
H A Dzstd_decompress_internal.h81 ZSTD_seqSymbol OFTable[SEQSYMBOL_TABLE_SIZE(OffFSELog)]; /* is also used as temporary workspace while building hufTable during DDict creation */
83 HUF_DTable hufTable[HUF_DTABLE_SIZE(HufLog)]; /* can accommodate HUF_decompress4X */ member in struct:__anon230

Completed in 336 milliseconds