Searched refs:FSE_CTable (Results 1 – 8 of 8) sorted by relevance
/linux-6.1.9/lib/zstd/compress/ |
D | zstd_compress_sequences.h | 26 FSE_CTable const* prevCTable, 33 FSE_CTable* nextCTable, U32 FSELog, symbolEncodingType_e type, 37 const FSE_CTable* prevCTable, size_t prevCTableSize, 42 FSE_CTable const* CTable_MatchLength, BYTE const* mlCodeTable, 43 FSE_CTable const* CTable_OffsetBits, BYTE const* ofCodeTable, 44 FSE_CTable const* CTable_LitLength, BYTE const* llCodeTable, 48 FSE_CTable const* ctable,
|
D | zstd_compress_sequences.c | 46 static unsigned ZSTD_getFSEMaxSymbolValue(FSE_CTable const* ctable) { in ZSTD_getFSEMaxSymbolValue() 103 FSE_CTable const* ctable, in ZSTD_fseBitCost() 158 FSE_CTable const* prevCTable, in ZSTD_selectEncodingType() 242 FSE_CTable* nextCTable, U32 FSELog, symbolEncodingType_e type, in ZSTD_buildCTable() 246 const FSE_CTable* prevCTable, size_t prevCTableSize, in ZSTD_buildCTable() 290 FSE_CTable const* CTable_MatchLength, BYTE const* mlCodeTable, in ZSTD_encodeSequences_body() 291 FSE_CTable const* CTable_OffsetBits, BYTE const* ofCodeTable, in ZSTD_encodeSequences_body() 292 FSE_CTable const* CTable_LitLength, BYTE const* llCodeTable, in ZSTD_encodeSequences_body() 384 FSE_CTable const* CTable_MatchLength, BYTE const* mlCodeTable, in ZSTD_encodeSequences_default() 385 FSE_CTable const* CTable_OffsetBits, BYTE const* ofCodeTable, in ZSTD_encodeSequences_default() [all …]
|
D | fse_compress.c | 67 size_t FSE_buildCTable_wksp(FSE_CTable* ct, in FSE_buildCTable_wksp() 302 FSE_CTable* FSE_createCTable (unsigned maxSymbolValue, unsigned tableLog) in FSE_createCTable() 307 return (FSE_CTable*)ZSTD_malloc(size); in FSE_createCTable() 310 void FSE_freeCTable (FSE_CTable* ct) { ZSTD_free(ct); } in FSE_freeCTable() 494 size_t FSE_buildCTable_raw (FSE_CTable* ct, unsigned nbBits) in FSE_buildCTable_raw() 527 size_t FSE_buildCTable_rle (FSE_CTable* ct, BYTE symbolValue) in FSE_buildCTable_rle() 552 const FSE_CTable* ct, const unsigned fast) in FSE_compress_usingCTable_generic() 611 const FSE_CTable* ct) in FSE_compress_usingCTable()
|
D | zstd_compress_superblock.c | 179 FSE_CTable* CTable_LitLength = nextEntropy->litlengthCTable; in ZSTD_buildSuperBlockEntropy_sequences() 180 FSE_CTable* CTable_OffsetBits = nextEntropy->offcodeCTable; in ZSTD_buildSuperBlockEntropy_sequences() 181 FSE_CTable* CTable_MatchLength = nextEntropy->matchlengthCTable; in ZSTD_buildSuperBlockEntropy_sequences() 607 size_t nbSeq, const FSE_CTable* fseCTable, in ZSTD_estimateSubBlockSize_symbolType()
|
D | zstd_compress_internal.h | 65 FSE_CTable offcodeCTable[FSE_CTABLE_SIZE_U32(OffFSELog, MaxOff)]; 66 FSE_CTable matchlengthCTable[FSE_CTABLE_SIZE_U32(MLFSELog, MaxML)]; 67 FSE_CTable litlengthCTable[FSE_CTABLE_SIZE_U32(LLFSELog, MaxLL)];
|
D | huf_compress.c | 61 FSE_CTable CTable[FSE_CTABLE_SIZE_U32(MAX_FSE_TABLELOG_FOR_HUFF_HEADER, HUF_TABLELOG_MAX)];
|
D | zstd_compress.c | 2110 FSE_CTable* CTable_LitLength = nextEntropy->fse.litlengthCTable; in ZSTD_entropyCompressSequences_internal() 2111 FSE_CTable* CTable_OffsetBits = nextEntropy->fse.offcodeCTable; in ZSTD_entropyCompressSequences_internal() 2112 FSE_CTable* CTable_MatchLength = nextEntropy->fse.matchlengthCTable; in ZSTD_entropyCompressSequences_internal()
|
/linux-6.1.9/lib/zstd/common/ |
D | fse.h | 163 typedef unsigned FSE_CTable; /* don't allocate that. It's only meant to be more restrictive than … typedef 164 FSE_PUBLIC_API FSE_CTable* FSE_createCTable (unsigned maxSymbolValue, unsigned tableLog); 165 FSE_PUBLIC_API void FSE_freeCTable (FSE_CTable* ct); 170 FSE_PUBLIC_API size_t FSE_buildCTable(FSE_CTable* ct, const short* normalizedCounter, unsigned maxS… 177 …usingCTable (void* dst, size_t dstCapacity, const void* src, size_t srcSize, const FSE_CTable* ct); 309 …TableLog, maxSymbolValue) (FSE_CTABLE_SIZE_U32(maxTableLog, maxSymbolValue) * sizeof(FSE_CTable)) 327 size_t FSE_buildCTable_raw (FSE_CTable* ct, unsigned nbBits); 330 size_t FSE_buildCTable_rle (FSE_CTable* ct, unsigned char symbolValue); 339 size_t FSE_buildCTable_wksp(FSE_CTable* ct, const short* normalizedCounter, unsigned maxSymbolValue… 380 static void FSE_initCState(FSE_CState_t* CStatePtr, const FSE_CTable* ct); [all …]
|