Searched refs:FSE_CTable (Results 1 – 8 of 8) sorted by relevance
| /linux-6.15/lib/zstd/compress/ |
| H A D | zstd_compress_sequences.h | 28 FSE_CTable const* prevCTable, 35 FSE_CTable* nextCTable, U32 FSELog, SymbolEncodingType_e type, 39 const FSE_CTable* prevCTable, size_t prevCTableSize, 44 FSE_CTable const* CTable_MatchLength, BYTE const* mlCodeTable, 45 FSE_CTable const* CTable_OffsetBits, BYTE const* ofCodeTable, 46 FSE_CTable const* CTable_LitLength, BYTE const* llCodeTable, 50 FSE_CTable const* ctable,
|
| H A D | zstd_compress_sequences.c | 47 static unsigned ZSTD_getFSEMaxSymbolValue(FSE_CTable const* ctable) { in ZSTD_getFSEMaxSymbolValue() 106 FSE_CTable const* ctable, in ZSTD_fseBitCost() 161 FSE_CTable const* prevCTable, in ZSTD_selectEncodingType() 249 const FSE_CTable* prevCTable, size_t prevCTableSize, in ZSTD_buildCTable() 295 FSE_CTable const* CTable_OffsetBits, BYTE const* ofCodeTable, in ZSTD_encodeSequences_body() 296 FSE_CTable const* CTable_LitLength, BYTE const* llCodeTable, in ZSTD_encodeSequences_body() 389 FSE_CTable const* CTable_OffsetBits, BYTE const* ofCodeTable, in ZSTD_encodeSequences_default() 390 FSE_CTable const* CTable_LitLength, BYTE const* llCodeTable, in ZSTD_encodeSequences_default() 407 FSE_CTable const* CTable_OffsetBits, BYTE const* ofCodeTable, in ZSTD_encodeSequences_bmi2() 408 FSE_CTable const* CTable_LitLength, BYTE const* llCodeTable, in ZSTD_encodeSequences_bmi2() [all …]
|
| H A D | fse_compress.c | 69 size_t FSE_buildCTable_wksp(FSE_CTable* ct, in FSE_buildCTable_wksp() 529 size_t FSE_buildCTable_rle (FSE_CTable* ct, BYTE symbolValue) in FSE_buildCTable_rle() 554 const FSE_CTable* ct, const unsigned fast) in FSE_compress_usingCTable_generic() 613 const FSE_CTable* ct) in FSE_compress_usingCTable()
|
| H A D | zstd_compress_internal.h | 67 FSE_CTable offcodeCTable[FSE_CTABLE_SIZE_U32(OffFSELog, MaxOff)]; 68 FSE_CTable matchlengthCTable[FSE_CTABLE_SIZE_U32(MLFSELog, MaxML)]; 69 FSE_CTable litlengthCTable[FSE_CTABLE_SIZE_U32(LLFSELog, MaxLL)];
|
| H A D | zstd_compress_superblock.c | 333 size_t nbSeq, const FSE_CTable* fseCTable, in ZSTD_estimateSubBlockSize_symbolType()
|
| H A D | zstd_compress.c | 2687 FSE_CTable* CTable_LitLength = nextEntropy->litlengthCTable; in ZSTD_buildSequencesStatistics() 2688 FSE_CTable* CTable_OffsetBits = nextEntropy->offcodeCTable; in ZSTD_buildSequencesStatistics() 2689 FSE_CTable* CTable_MatchLength = nextEntropy->matchlengthCTable; in ZSTD_buildSequencesStatistics() 2814 FSE_CTable* CTable_LitLength = nextEntropy->fse.litlengthCTable; in ZSTD_entropyCompressSeqStore_internal() 2815 FSE_CTable* CTable_OffsetBits = nextEntropy->fse.offcodeCTable; in ZSTD_entropyCompressSeqStore_internal() 2816 FSE_CTable* CTable_MatchLength = nextEntropy->fse.matchlengthCTable; in ZSTD_entropyCompressSeqStore_internal() 3773 const FSE_CTable* fseCTable, in ZSTD_estimateBlockSize_symbolType()
|
| H A D | huf_compress.c | 138 FSE_CTable CTable[FSE_CTABLE_SIZE_U32(MAX_FSE_TABLELOG_FOR_HUFF_HEADER, HUF_TABLELOG_MAX)];
|
| /linux-6.15/lib/zstd/common/ |
| H A D | fse.h | 119 typedef unsigned FSE_CTable; /* don't allocate that. It's only meant to be more restrictive than … typedef 124 FSE_PUBLIC_API size_t FSE_buildCTable(FSE_CTable* ct, const short* normalizedCounter, unsigned maxS… 131 …usingCTable (void* dst, size_t dstCapacity, const void* src, size_t srcSize, const FSE_CTable* ct); 245 …TableLog, maxSymbolValue) (FSE_CTABLE_SIZE_U32(maxTableLog, maxSymbolValue) * sizeof(FSE_CTable)) 256 size_t FSE_buildCTable_rle (FSE_CTable* ct, unsigned char symbolValue); 266 size_t FSE_buildCTable_wksp(FSE_CTable* ct, const short* normalizedCounter, unsigned maxSymbolValue… 299 static void FSE_initCState(FSE_CState_t* CStatePtr, const FSE_CTable* ct); 429 MEM_STATIC void FSE_initCState(FSE_CState_t* statePtr, const FSE_CTable* ct) in FSE_initCState() 444 MEM_STATIC void FSE_initCState2(FSE_CState_t* statePtr, const FSE_CTable* ct, U32 symbol) in FSE_initCState2()
|