Searched refs:FSE_DTable (Results 1 – 2 of 2) sorted by relevance
/openbmc/linux/lib/zstd/common/ |
H A D | fse.h | 243 typedef unsigned FSE_DTable; /* don't allocate that. It's just a way to be more restrictive than … typedef 244 FSE_PUBLIC_API FSE_DTable* FSE_createDTable(unsigned tableLog); 245 FSE_PUBLIC_API void FSE_freeDTable(FSE_DTable* dt); 250 FSE_PUBLIC_API size_t FSE_buildDTable (FSE_DTable* dt, const short* normalizedCounter, unsigned max… 257 …singDTable(void* dst, size_t dstCapacity, const void* cSrc, size_t cSrcSize, const FSE_DTable* dt); 310 …_DTABLE_SIZE(maxTableLog) (FSE_DTABLE_SIZE_U32(maxTableLog) * sizeof(FSE_DTable)) 344 FSE_PUBLIC_API size_t FSE_buildDTable_wksp(FSE_DTable* dt, const short* normalizedCounter, unsigned… 347 size_t FSE_buildDTable_raw (FSE_DTable* dt, unsigned nbBits); 350 size_t FSE_buildDTable_rle (FSE_DTable* dt, unsigned char symbolValue); 440 static void FSE_initDState(FSE_DState_t* DStatePtr, BIT_DStream_t* bitD, const FSE_DTable* dt); [all …]
|
H A D | fse_decompress.c | 60 FSE_DTable* FSE_createDTable (unsigned tableLog) in FSE_createDTable() 63 return (FSE_DTable*)ZSTD_malloc( FSE_DTABLE_SIZE_U32(tableLog) * sizeof (U32) ); in FSE_createDTable() 66 void FSE_freeDTable (FSE_DTable* dt) in FSE_freeDTable() 71 static size_t FSE_buildDTable_internal(FSE_DTable* dt, const short* normalizedCounter, unsigned max… in FSE_buildDTable_internal() 176 size_t FSE_buildDTable_wksp(FSE_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue… in FSE_buildDTable_wksp() 187 size_t FSE_buildDTable_rle (FSE_DTable* dt, BYTE symbolValue) in FSE_buildDTable_rle() 205 size_t FSE_buildDTable_raw (FSE_DTable* dt, unsigned nbBits) in FSE_buildDTable_raw() 234 const FSE_DTable* dt, const unsigned fast) in FSE_decompress_usingDTable_generic() 296 const FSE_DTable* dt) in FSE_decompress_usingDTable() 315 FSE_DTable dtable[]; /* Dynamically sized */ [all …]
|