Home
last modified time | relevance | path

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

/u-boot/lib/zstd/
A Dfse_decompress.c65 size_t FSE_buildDTable_wksp(FSE_DTable *dt, const short *normalizedCounter, unsigned maxSymbolValue… in FSE_buildDTable_wksp()
140 size_t FSE_buildDTable_rle(FSE_DTable *dt, BYTE symbolValue) in FSE_buildDTable_rle()
157 size_t FSE_buildDTable_raw(FSE_DTable *dt, unsigned nbBits) in FSE_buildDTable_raw()
184 …able_generic(void *dst, size_t maxDstSize, const void *cSrc, size_t cSrcSize, const FSE_DTable *dt, in FSE_decompress_usingDTable_generic()
252 …singDTable(void *dst, size_t originalSize, const void *cSrc, size_t cSrcSize, const FSE_DTable *dt) in FSE_decompress_usingDTable()
272 FSE_DTable *dt; in FSE_decompress_wksp()
276 FSE_STATIC_ASSERT(sizeof(FSE_DTable) == sizeof(U32)); in FSE_decompress_wksp()
278 dt = (FSE_DTable *)((U32 *)workspace + spaceUsed32); in FSE_decompress_wksp()
A Dfse.h155 typedef unsigned FSE_DTable; /* don't allocate that. It's just a way to be more restrictive than vo… typedef
160 FSE_PUBLIC_API size_t FSE_buildDTable_wksp(FSE_DTable *dt, const short *normalizedCounter, unsigned…
167 …singDTable(void *dst, size_t dstCapacity, const void *cSrc, size_t cSrcSize, const FSE_DTable *dt);
248 size_t FSE_buildDTable_raw(FSE_DTable *dt, unsigned nbBits);
251 size_t FSE_buildDTable_rle(FSE_DTable *dt, unsigned char symbolValue);
328 static void FSE_initDState(FSE_DState_t *DStatePtr, BIT_DStream_t *bitD, const FSE_DTable *dt);
451 ZSTD_STATIC void FSE_initDState(FSE_DState_t *DStatePtr, BIT_DStream_t *bitD, const FSE_DTable *dt) in FSE_initDState()
A Ddecompress.c60 FSE_DTable LLTable[FSE_DTABLE_SIZE_U32(LLFSELog)];
61 FSE_DTable OFTable[FSE_DTABLE_SIZE_U32(OffFSELog)];
62 FSE_DTable MLTable[FSE_DTABLE_SIZE_U32(MLFSELog)];
69 const FSE_DTable *LLTptr;
70 const FSE_DTable *MLTptr;
71 const FSE_DTable *OFTptr;
743 static size_t ZSTD_buildSeqTable(FSE_DTable *DTableSpace, const FSE_DTable **DTablePtr, symbolEncod… in ZSTD_buildSeqTable()
756 case set_basic: *DTablePtr = (const FSE_DTable *)tmpPtr; return 0; in ZSTD_buildSeqTable()

Completed in 11 milliseconds