| /kernel/linux/linux-5.10/lib/zstd/ |
| H A D | entropy_common.c | 219 U32 const tableLog = BIT_highbit32(weightTotal) + 1; in HUF_readStats_wksp() local
|
| H A D | fse_decompress.c | 88 size_t FSE_buildDTable_wksp(FSE_DTable *dt, const short *normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, void *workspace, size_t workspaceSize) in FSE_buildDTable_wksp() argument 291 unsigned tableLog; in FSE_decompress_wksp() local [all...] |
| H A D | fse.h | 431 const U32 tableLog = ZSTD_read16(ptr); FSE_initCState() local 471 U16 tableLog; global() member [all...] |
| H A D | huf_compress.c | 89 U32 tableLog = MAX_FSE_TABLELOG_FOR_HUFF_HEADER; in HUF_compressWeights_wksp() local 207 U32 tableLog = 0; in HUF_readCTable_wksp() local [all...] |
| H A D | huf_decompress.c | 70 BYTE tableLog; member 92 U32 tableLog = 0; in HUF_readDTableX2_wksp() local 484 U32 tableLog, maxW, sizeOfSort, nbSymbols; HUF_readDTableX4_wksp() local [all...] |
| H A D | fse_compress.c | 92 size_t FSE_buildCTable_wksp(FSE_CTable *ct, const short *normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, void *workspace, size_t workspaceSize) in FSE_buildCTable_wksp() argument 197 size_t FSE_NCountWriteBound(unsigned maxSymbolValue, unsigned tableLog) in FSE_NCountWriteBound() argument 203 FSE_writeNCount_generic(void *header, size_t headerBufferSize, const short *normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, unsigned writeIsSafe) FSE_writeNCount_generic() argument 301 FSE_writeNCount(void *buffer, size_t bufferSize, const short *normalizedCounter, unsigned maxSymbolValue, unsigned tableLog) FSE_writeNCount() argument 477 FSE_sizeof_CTable(unsigned maxSymbolValue, unsigned tableLog) FSE_sizeof_CTable() argument 496 U32 tableLog = maxTableLog; FSE_optimalTableLog_internal() local 519 FSE_normalizeM2(short *norm, U32 tableLog, const unsigned *count, size_t total, U32 maxSymbolValue) FSE_normalizeM2() argument 608 FSE_normalizeCount(short *normalizedCounter, unsigned tableLog, const unsigned *count, size_t total, unsigned maxSymbolValue) FSE_normalizeCount() argument [all...] |
| H A D | decompress.c | 772 U32 tableLog; in ZSTD_buildSeqTable() local
|
| H A D | compress.c | 665 const U32 tableLog = FSE_optimalTableLog(LLFSELog, nbSeq, max); in ZSTD_compressSequences_internal() local 697 const U32 tableLog = FSE_optimalTableLog(OffFSELog, nbSeq, max); in ZSTD_compressSequences_internal() local 729 const U32 tableLog = FSE_optimalTableLog(MLFSELog, nbSeq, max); in ZSTD_compressSequences_internal() local [all...] |
| /kernel/linux/linux-6.6/lib/zstd/common/ |
| H A D | entropy_common.c | 304 { U32 const tableLog = BIT_highbit32(weightTotal) + 1; in HUF_readStats_body() local
|
| H A D | fse.h | 515 const U32 tableLog = MEM_read16(ptr); FSE_initCState() local 568 FSE_bitCost(const void* symbolTTPtr, U32 tableLog, U32 symbolValue, U32 accuracyLog) FSE_bitCost() argument [all...] |
| H A D | fse_decompress.c | 60 FSE_DTable* FSE_createDTable (unsigned tableLog) in FSE_createDTable() argument 71 static size_t FSE_buildDTable_internal(FSE_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, void* workSpace, size_t wkspSize) in FSE_buildDTable_internal() argument 176 FSE_buildDTable_wksp(FSE_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, void* workSpace, size_t wkspSize) FSE_buildDTable_wksp() argument 327 unsigned tableLog; FSE_decompress_wksp_body() local [all...] |
| /kernel/linux/linux-6.6/lib/zstd/compress/ |
| H A D | zstd_compress_sequences.c | 75 const U32 tableLog = FSE_optimalTableLog(FSELog, nbSeq, max); in ZSTD_NCountCost() local 120 unsigned const tableLog = cstate.stateLog; in ZSTD_fseBitCost() local 270 const U32 tableLog = FSE_optimalTableLog(FSELog, nbSeq, max); in ZSTD_buildCTable() local [all...] |
| H A D | fse_compress.c | 67 FSE_buildCTable_wksp(FSE_CTable* ct, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, void* workSpace, size_t wkspSize) FSE_buildCTable_wksp() argument 222 FSE_NCountWriteBound(unsigned maxSymbolValue, unsigned tableLog) FSE_NCountWriteBound() argument 233 FSE_writeNCount_generic(void* header, size_t headerBufferSize, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, unsigned writeIsSafe) FSE_writeNCount_generic() argument 328 FSE_writeNCount(void* buffer, size_t bufferSize, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog) FSE_writeNCount() argument 345 FSE_createCTable(unsigned maxSymbolValue, unsigned tableLog) FSE_createCTable() argument 368 U32 tableLog = maxTableLog; FSE_optimalTableLog_internal() local 387 FSE_normalizeM2(short* norm, U32 tableLog, const unsigned* count, size_t total, U32 maxSymbolValue, short lowProbCount) FSE_normalizeM2() argument 473 FSE_normalizeCount(short* normalizedCounter, unsigned tableLog, const unsigned* count, size_t total, unsigned maxSymbolValue, unsigned useLowProbCount) FSE_normalizeCount() argument [all...] |
| H A D | huf_compress.c | 96 U32 tableLog = MAX_FSE_TABLELOG_FOR_HUFF_HEADER; in HUF_compressWeights() local 222 U32 tableLog = 0; in HUF_readCTable() local 956 HUF_tightCompressBound(size_t srcSize, size_t tableLog) HUF_tightCompressBound() argument 967 U32 const tableLog = (U32)CTable[0]; HUF_compress1X_usingCTable_internal_body() local [all...] |
| /kernel/linux/linux-6.6/lib/zstd/decompress/ |
| H A D | zstd_decompress_internal.h | 64 U32 tableLog; member
|
| H A D | zstd_decompress_block.c | 444 ZSTD_buildFSETable_body(ZSTD_seqSymbol* dt, const short* normalizedCounter, unsigned maxSymbolValue, const U32* baseValue, const U8* nbAdditionalBits, unsigned tableLog, void* wksp, size_t wkspSize) ZSTD_buildFSETable_body() argument 564 ZSTD_buildFSETable_body_default(ZSTD_seqSymbol* dt, const short* normalizedCounter, unsigned maxSymbolValue, const U32* baseValue, const U8* nbAdditionalBits, unsigned tableLog, void* wksp, size_t wkspSize) ZSTD_buildFSETable_body_default() argument 574 ZSTD_buildFSETable_body_bmi2(ZSTD_seqSymbol* dt, const short* normalizedCounter, unsigned maxSymbolValue, const U32* baseValue, const U8* nbAdditionalBits, unsigned tableLog, void* wksp, size_t wkspSize) ZSTD_buildFSETable_body_bmi2() argument 584 ZSTD_buildFSETable(ZSTD_seqSymbol* dt, const short* normalizedCounter, unsigned maxSymbolValue, const U32* baseValue, const U8* nbAdditionalBits, unsigned tableLog, void* wksp, size_t wkspSize, int bmi2) ZSTD_buildFSETable() argument 638 { unsigned tableLog; ZSTD_buildSeqTable() local 1959 U32 const tableLog = ((const ZSTD_seqSymbol_header*)ptr)[0].tableLog; global() local [all...] |
| H A D | huf_decompress.c | 128 typedef struct { BYTE maxTableLog; BYTE tableType; BYTE tableLog; BYTE reserved; } DTableDesc; member 299 static U32 HUF_rescaleStats(BYTE* huffWeight, U32* rankVal, U32 nbSymbols, U32 tableLog, U32 targetTableLog) in HUF_rescaleStats() argument 340 U32 tableLog = 0; HUF_readDTableX1_wksp_bmi2() local 872 HUF_fillDTableX2ForWeight( HUF_DEltX2* DTableRank, sortedSymbol_t const* begin, sortedSymbol_t const* end, U32 nbBits, U32 tableLog, U16 baseSeq, int const level) HUF_fillDTableX2ForWeight() argument 1052 U32 tableLog, maxW, nbSymbols; HUF_readDTableX2_wksp_bmi2() local [all...] |