Home
last modified time | relevance | path

Searched refs:FSE_DTable (Results 1 – 2 of 2) sorted by relevance

/linux-6.15/lib/zstd/common/
H A Dfse_decompress.c59 static size_t FSE_buildDTable_internal(FSE_DTable* dt, const short* normalizedCounter, unsigned max… in FSE_buildDTable_internal()
162 size_t FSE_buildDTable_wksp(FSE_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue… in FSE_buildDTable_wksp()
177 const FSE_DTable* dt, const unsigned fast) in FSE_decompress_usingDTable_generic()
255 size_t const dtablePos = sizeof(FSE_DecompressWksp) / sizeof(FSE_DTable); in FSE_decompress_wksp_body()
256 FSE_DTable* const dtable = (FSE_DTable*)workSpace + dtablePos; in FSE_decompress_wksp_body()
262 FSE_STATIC_ASSERT(sizeof(FSE_DecompressWksp) % sizeof(FSE_DTable) == 0); in FSE_decompress_wksp_body()
H A Dfse.h195 typedef unsigned FSE_DTable; /* don't allocate that. It's just a way to be more restrictive than … typedef
246 …_DTABLE_SIZE(maxTableLog) (FSE_DTABLE_SIZE_U32(maxTableLog) * sizeof(FSE_DTable))
270 FSE_PUBLIC_API size_t FSE_buildDTable_wksp(FSE_DTable* dt, const short* normalizedCounter, unsigned…
358 static void FSE_initDState(FSE_DState_t* DStatePtr, BIT_DStream_t* bitD, const FSE_DTable* dt);
518 MEM_STATIC void FSE_initDState(FSE_DState_t* DStatePtr, BIT_DStream_t* bitD, const FSE_DTable* dt) in FSE_initDState()