Searched refs:FSE_CTable (Results 1 – 4 of 4) sorted by relevance
/linux-4.19.296/lib/zstd/ |
D | fse.h | 122 typedef unsigned FSE_CTable; /* don't allocate that. It's only meant to be more restrictive than vo… typedef 129 …_usingCTable(void *dst, size_t dstCapacity, const void *src, size_t srcSize, const FSE_CTable *ct); 266 size_t FSE_buildCTable_raw(FSE_CTable *ct, unsigned nbBits); 269 size_t FSE_buildCTable_rle(FSE_CTable *ct, unsigned char symbolValue); 276 size_t FSE_buildCTable_wksp(FSE_CTable *ct, const short *normalizedCounter, unsigned maxSymbolValue… 301 static void FSE_initCState(FSE_CState_t *CStatePtr, const FSE_CTable *ct); 427 ZSTD_STATIC void FSE_initCState(FSE_CState_t *statePtr, const FSE_CTable *ct) in FSE_initCState() 441 ZSTD_STATIC void FSE_initCState2(FSE_CState_t *statePtr, const FSE_CTable *ct, U32 symbol) in FSE_initCState2()
|
D | fse_compress.c | 92 size_t FSE_buildCTable_wksp(FSE_CTable *ct, const short *normalizedCounter, unsigned maxSymbolValue… in FSE_buildCTable_wksp() 666 size_t FSE_buildCTable_raw(FSE_CTable *ct, unsigned nbBits) in FSE_buildCTable_raw() 702 size_t FSE_buildCTable_rle(FSE_CTable *ct, BYTE symbolValue) in FSE_buildCTable_rle() 724 …eric(void *dst, size_t dstSize, const void *src, size_t srcSize, const FSE_CTable *ct, const unsig… in FSE_compress_usingCTable_generic() 785 …press_usingCTable(void *dst, size_t dstSize, const void *src, size_t srcSize, const FSE_CTable *ct) in FSE_compress_usingCTable()
|
D | huf_compress.c | 91 FSE_CTable *CTable; in HUF_compressWeights_wksp() 96 HUF_STATIC_ASSERT(sizeof(FSE_CTable) == sizeof(U32)); in HUF_compressWeights_wksp() 98 CTable = (FSE_CTable *)((U32 *)workspace + spaceUsed32); in HUF_compressWeights_wksp()
|
D | compress.c | 84 FSE_CTable offcodeCTable[FSE_CTABLE_SIZE_U32(OffFSELog, MaxOff)]; 85 FSE_CTable matchlengthCTable[FSE_CTABLE_SIZE_U32(MLFSELog, MaxML)]; 86 FSE_CTable litlengthCTable[FSE_CTABLE_SIZE_U32(LLFSELog, MaxLL)]; 590 FSE_CTable *CTable_LitLength = zc->litlengthCTable; in ZSTD_compressSequences_internal() 591 FSE_CTable *CTable_OffsetBits = zc->offcodeCTable; in ZSTD_compressSequences_internal() 592 FSE_CTable *CTable_MatchLength = zc->matchlengthCTable; in ZSTD_compressSequences_internal()
|