Searched refs:FSE_DTable (Results 1 – 2 of 2) sorted by relevance
| /lib/zstd/common/ |
| A D | fse.h | 235 typedef unsigned FSE_DTable; /* don't allocate that. It's just a way to be more restrictive than … typedef 236 FSE_PUBLIC_API FSE_DTable* FSE_createDTable(unsigned tableLog); 237 FSE_PUBLIC_API void FSE_freeDTable(FSE_DTable* dt); 242 FSE_PUBLIC_API size_t FSE_buildDTable (FSE_DTable* dt, const short* normalizedCounter, unsigned max… 249 …singDTable(void* dst, size_t dstCapacity, const void* cSrc, size_t cSrcSize, const FSE_DTable* dt); 301 …_DTABLE_SIZE(maxTableLog) (FSE_DTABLE_SIZE_U32(maxTableLog) * sizeof(FSE_DTable)) 334 FSE_PUBLIC_API size_t FSE_buildDTable_wksp(FSE_DTable* dt, const short* normalizedCounter, unsigned… 337 size_t FSE_buildDTable_raw (FSE_DTable* dt, unsigned nbBits); 340 size_t FSE_buildDTable_rle (FSE_DTable* dt, unsigned char symbolValue); 427 static void FSE_initDState(FSE_DState_t* DStatePtr, BIT_DStream_t* bitD, const FSE_DTable* dt); [all …]
|
| A D | fse_decompress.c | 56 FSE_DTable* FSE_createDTable (unsigned tableLog) in FSE_createDTable() 59 return (FSE_DTable*)ZSTD_malloc( FSE_DTABLE_SIZE_U32(tableLog) * sizeof (U32) ); in FSE_createDTable() 62 void FSE_freeDTable (FSE_DTable* dt) in FSE_freeDTable() 67 static size_t FSE_buildDTable_internal(FSE_DTable* dt, const short* normalizedCounter, unsigned max… in FSE_buildDTable_internal() 172 size_t FSE_buildDTable_wksp(FSE_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue… in FSE_buildDTable_wksp() 182 size_t FSE_buildDTable_rle (FSE_DTable* dt, BYTE symbolValue) in FSE_buildDTable_rle() 199 size_t FSE_buildDTable_raw (FSE_DTable* dt, unsigned nbBits) in FSE_buildDTable_raw() 228 const FSE_DTable* dt, const unsigned fast) in FSE_decompress_usingDTable_generic() 289 const FSE_DTable* dt) in FSE_decompress_usingDTable() 307 FSE_DTable dtable[1]; /* Dynamically sized */ [all …]
|
Completed in 6 milliseconds