Home
last modified time | relevance | path

Searched refs:FSE_DTABLE_SIZE_U32 (Results 1 - 5 of 5) sorted by relevance

/kernel/linux/linux-6.6/lib/zstd/common/
H A Dfse.h306 #define FSE_DTABLE_SIZE_U32(maxTableLog) (1 + (1<<(maxTableLog))) macro
310 #define FSE_DTABLE_SIZE(maxTableLog) (FSE_DTABLE_SIZE_U32(maxTableLog) * sizeof(FSE_DTable))
353 #define FSE_DECOMPRESS_WKSP_SIZE_U32(maxTableLog, maxSymbolValue) (FSE_DTABLE_SIZE_U32(maxTableLog) + FSE_BUILD_DTABLE_WKSP_SIZE_U32(maxTableLog, maxSymbolValue) + (FSE_MAX_SYMBOL_VALUE + 1) / 2 + 1)
H A Dfse_decompress.c63 return (FSE_DTable*)ZSTD_malloc( FSE_DTABLE_SIZE_U32(tableLog) * sizeof (U32) ); in FSE_createDTable()
345 workSpace = wksp->dtable + FSE_DTABLE_SIZE_U32(tableLog); in FSE_decompress_wksp_body()
386 typedef FSE_DTable DTable_max_t[FSE_DTABLE_SIZE_U32(FSE_MAX_TABLELOG)];
/kernel/linux/linux-5.10/lib/zstd/
H A Dfse.h240 #define FSE_DTABLE_SIZE_U32(maxTableLog) (1 + (1 << maxTableLog)) macro
285 /**< same as FSE_decompress(), using an externally allocated `workSpace` produced with `FSE_DTABLE_SIZE_U32(maxLog)` */
H A Dfse_decompress.c302 spaceUsed32 += FSE_DTABLE_SIZE_U32(maxLog); in FSE_decompress_wksp()
H A Ddecompress.c69 FSE_DTable LLTable[FSE_DTABLE_SIZE_U32(LLFSELog)];
70 FSE_DTable OFTable[FSE_DTABLE_SIZE_U32(OffFSELog)];
71 FSE_DTable MLTable[FSE_DTABLE_SIZE_U32(MLFSELog)];

Completed in 8 milliseconds